Back to list

Jetpack Compose UI

Lv.5455@mukitaro0 playsJan 2, 2026

Jetpack Compose declarative UI. Modern Android UI toolkit by Google.

preview.kotlin
Kotlin
1@Composable
2fun UserCard(user: User) {
3 Card(
4 modifier = Modifier
5 .fillMaxWidth()
6 .padding(8.dp)
7 ) {
8 Row(verticalAlignment = CenterVertically) {
9 AsyncImage(
10 model = user.avatarUrl,
11 contentDescription = null
12 )
13 Column(modifier = Modifier.padding(8.dp)) {
14 Text(user.name, style = MaterialTheme.typography.h6)
15 Text(user.email, style = MaterialTheme.typography.body2)
16 }
17 }
18 }
19}

Custom problems are not included in rankings