mirror of
https://github.com/skydoves/android-developer-roadmap.git
synced 2024-12-25 00:00:04 +03:00
Fix Crash for low end devices.
Used Coil instead of Glide to load Image.
This commit is contained in:
parent
87b79e5bca
commit
0c24210719
|
@ -48,6 +48,7 @@ dependencies {
|
||||||
implementation "androidx.compose.foundation:foundation-layout:$compose_version"
|
implementation "androidx.compose.foundation:foundation-layout:$compose_version"
|
||||||
implementation "androidx.activity:activity-compose:$compose_activity_version"
|
implementation "androidx.activity:activity-compose:$compose_activity_version"
|
||||||
|
|
||||||
implementation "com.github.skydoves:landscapist-glide:$landscapist_version"
|
|
||||||
implementation "com.mxalbert.zoomable:zoomable:$zoomable_version"
|
implementation "com.mxalbert.zoomable:zoomable:$zoomable_version"
|
||||||
|
|
||||||
|
implementation("io.coil-kt:coil-compose:1.4.0")
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,17 +19,16 @@ package io.getstream.androiddeveloperroadmap
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.activity.ComponentActivity
|
import androidx.activity.ComponentActivity
|
||||||
import androidx.activity.compose.setContent
|
import androidx.activity.compose.setContent
|
||||||
|
import androidx.compose.foundation.Image
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
import androidx.compose.foundation.layout.height
|
|
||||||
import androidx.compose.material.MaterialTheme
|
import androidx.compose.material.MaterialTheme
|
||||||
import androidx.compose.material.Surface
|
import androidx.compose.material.Surface
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.layout.ContentScale
|
import androidx.compose.ui.layout.ContentScale
|
||||||
import androidx.compose.ui.tooling.preview.Preview
|
import androidx.compose.ui.tooling.preview.Preview
|
||||||
import androidx.compose.ui.unit.dp
|
import coil.compose.rememberImagePainter
|
||||||
import com.mxalbert.zoomable.Zoomable
|
import com.mxalbert.zoomable.Zoomable
|
||||||
import com.skydoves.landscapist.glide.GlideImage
|
|
||||||
import io.getstream.androiddeveloperroadmap.ui.theme.AndroidDeveloperRoadmapTheme
|
import io.getstream.androiddeveloperroadmap.ui.theme.AndroidDeveloperRoadmapTheme
|
||||||
|
|
||||||
class MainActivity : ComponentActivity() {
|
class MainActivity : ComponentActivity() {
|
||||||
|
@ -51,13 +50,16 @@ class MainActivity : ComponentActivity() {
|
||||||
@Composable
|
@Composable
|
||||||
private fun Roadmap() {
|
private fun Roadmap() {
|
||||||
Zoomable(
|
Zoomable(
|
||||||
modifier = Modifier.height(3200.dp)
|
|
||||||
) {
|
|
||||||
GlideImage(
|
|
||||||
imageModel = "https://user-images.githubusercontent.com/24237865/144350753-5a52e6e5-3517-476c-8e5c-adad919abe8e.png",
|
|
||||||
modifier = Modifier.fillMaxSize(),
|
modifier = Modifier.fillMaxSize(),
|
||||||
previewPlaceholder = R.drawable.roadmap_preview,
|
) {
|
||||||
contentScale = ContentScale.Fit
|
Image(
|
||||||
|
painter = rememberImagePainter("https://user-images.githubusercontent.com/24237865/144350753-5a52e6e5-3517-476c-8e5c-adad919abe8e.png",
|
||||||
|
builder = {
|
||||||
|
placeholder(R.drawable.roadmap_preview)
|
||||||
|
}),
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentScale = ContentScale.Fit,
|
||||||
|
contentDescription = null
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,8 @@ pluginManagement {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application' version '7.1.0-alpha13'
|
id 'com.android.application' version '7.1.0-beta03'
|
||||||
id 'com.android.library' version '7.1.0-alpha13'
|
id 'com.android.library' version '7.1.0-beta03'
|
||||||
id 'org.jetbrains.kotlin.android' version '1.5.31'
|
id 'org.jetbrains.kotlin.android' version '1.5.31'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue