Replace reader sheet dropdowns with chips

This commit is contained in:
arkon
2023-07-16 09:58:52 -04:00
parent 34f7caa0fc
commit 22c6dbda3f
5 changed files with 87 additions and 67 deletions

View File

@ -229,7 +229,7 @@ fun SelectItem(
)
ExposedDropdownMenu(
modifier = Modifier.exposedDropdownSize(matchTextFieldWidth = true),
modifier = Modifier.exposedDropdownSize(),
expanded = expanded,
onDismissRequest = { expanded = false },
) {
@ -318,7 +318,7 @@ fun TextItem(
}
@Composable
fun SettingsFlowRow(
fun SettingsChipRow(
@StringRes labelRes: Int,
content: @Composable FlowRowScope.() -> Unit,
) {