Update Compose
Also remove workaround for preventing keyboard showing up for SelectItems. (cherry picked from commit efa7a3a167219e9e23ee9b29d9cabe3ca8eb088a)
This commit is contained in:
parent
8aed8fa741
commit
4b4e432ef6
@ -1,7 +1,7 @@
|
|||||||
[versions]
|
[versions]
|
||||||
compiler = "1.5.1"
|
compiler = "1.5.1"
|
||||||
compose-bom = "2023.07.00-alpha02"
|
compose-bom = "2023.09.00-alpha01"
|
||||||
accompanist = "0.31.5-beta"
|
accompanist = "0.33.0-alpha"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
activity = "androidx.activity:activity-compose:1.7.2"
|
activity = "androidx.activity:activity-compose:1.7.2"
|
||||||
|
@ -232,7 +232,6 @@ fun SelectItem(
|
|||||||
label = { Text(text = label) },
|
label = { Text(text = label) },
|
||||||
value = options[selectedIndex].toString(),
|
value = options[selectedIndex].toString(),
|
||||||
onValueChange = {},
|
onValueChange = {},
|
||||||
enabled = false,
|
|
||||||
readOnly = true,
|
readOnly = true,
|
||||||
singleLine = true,
|
singleLine = true,
|
||||||
trailingIcon = {
|
trailingIcon = {
|
||||||
@ -240,9 +239,7 @@ fun SelectItem(
|
|||||||
expanded = expanded,
|
expanded = expanded,
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
colors = ExposedDropdownMenuDefaults.textFieldColors(
|
colors = ExposedDropdownMenuDefaults.textFieldColors(),
|
||||||
disabledTextColor = MaterialTheme.colorScheme.onSurface,
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
ExposedDropdownMenu(
|
ExposedDropdownMenu(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user