mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 08:47:03 +05:30
fix(android): reorder settings items
This commit is contained in:
parent
a8f559fe06
commit
67b253ba62
1 changed files with 11 additions and 11 deletions
|
@ -60,17 +60,6 @@ fun SettingsScreen(
|
||||||
val coroutineScope = rememberCoroutineScope()
|
val coroutineScope = rememberCoroutineScope()
|
||||||
Box(modifier = modifier.fillMaxSize()) {
|
Box(modifier = modifier.fillMaxSize()) {
|
||||||
Column {
|
Column {
|
||||||
ListItem(
|
|
||||||
headlineContent = { Text("Libraries") },
|
|
||||||
leadingContent = {
|
|
||||||
Icon(
|
|
||||||
imageVector = Icons.AutoMirrored.Filled.LibraryBooks,
|
|
||||||
contentDescription = null,
|
|
||||||
modifier = Modifier.height(32.dp),
|
|
||||||
)
|
|
||||||
},
|
|
||||||
modifier = Modifier.clickable(onClick = openLibrariesScreen),
|
|
||||||
)
|
|
||||||
ListItem(
|
ListItem(
|
||||||
headlineContent = { Text("Data transfer") },
|
headlineContent = { Text("Data transfer") },
|
||||||
leadingContent = {
|
leadingContent = {
|
||||||
|
@ -96,6 +85,17 @@ fun SettingsScreen(
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
ListItem(
|
||||||
|
headlineContent = { Text("Libraries") },
|
||||||
|
leadingContent = {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.AutoMirrored.Filled.LibraryBooks,
|
||||||
|
contentDescription = null,
|
||||||
|
modifier = Modifier.height(32.dp),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
modifier = Modifier.clickable(onClick = openLibrariesScreen),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue