Replace reader sheet dropdowns with chips

(cherry picked from commit 22c6dbda3f55d864665228b43954b8decb5dda1f)

# Conflicts:
#	app/src/main/java/eu/kanade/presentation/library/LibrarySettingsDialog.kt
#	app/src/main/java/eu/kanade/presentation/reader/settings/ReadingModePage.kt
This commit is contained in:
arkon
2023-07-16 09:58:52 -04:00
committed by Jobobby04
parent 9a9675c16b
commit 1fa687f7ac
5 changed files with 105 additions and 79 deletions
@@ -230,7 +230,7 @@ fun SelectItem(
)
ExposedDropdownMenu(
modifier = Modifier.exposedDropdownSize(matchTextFieldWidth = true),
modifier = Modifier.exposedDropdownSize(),
expanded = expanded,
onDismissRequest = { expanded = false },
) {
@@ -345,7 +345,7 @@ fun IconItem(
// SY <--
@Composable
fun SettingsFlowRow(
fun SettingsChipRow(
@StringRes labelRes: Int,
content: @Composable FlowRowScope.() -> Unit,
) {