Ice Cream App COMPOSE UI UX
Ice Cream App android COMPOSE UI UX, where you can display your ice cream collection. In the application, you will find many screens: Splash Screen, Categories Screen, Details Screen, and Custom Dialog Screen.
Jetpack Compose RecyclerView(LazyColumn) with Material Design
LazyColumn {
items(25) {
// * Card
Card(
modifier = Modifier
.fillMaxWidth()
,
content = {
Text("Card ", modifier = Modifier.padding(16.dp),style = MaterialTheme.typography.labelLarge)
}
)
// * Dividers
ListDivider()
}
}
/**
* Full-width divider with padding
*/
@Composable
fun ListDivider() {
Divider(
modifier = Modifier.padding(horizontal = 14.dp),
color = MaterialTheme.colors.onSurface.copy(alpha = 0.08f)
)
}
..