https://kotlinlang.org logo
#compose-android
Title
# compose-android
a

abbic

11/14/2023, 5:43 PM
Hi all, is it bad practice to have selectableGroup() semantics modifier on a container of a single selectable item? eg if there is list that is dynamic and could be of size 1 example
Copy code
Column(Modifier.selectableGroup()) {
    items.forEach {
        SelectableComposable(..) // could be just one item
    }
}
2 Views