If you have a Column mixing selectable (radio butt...
# compose
a
If you have a Column mixing selectable (radio buttons) with static things, but they are all the same group like like:
Column {
Text ("High Risk)
Radio Button
Radio Button
Text ("Medium Risk")
Radio Button
Radio Button
Text ("Low Risk")
...
... other things that just happen to be in a column but not radio button related ...
}
What is the correct way to apply
Modifier.selectable
: Do i put it on the parent column (even though not all things are selectable) or so I need to put each pair of Radio Buttons in their own container like
Column{
Text
Column (selectable) {
Radio Button
Radio Button
}
}