Colton Idle
01/21/2022, 7:23 AMclass ScreenViewState {
  val list = mutableStateListOf<Item>()class ConcreteType(override val type: String = "") : Item {
    var something by mutableStateOf("beep")(myItem as ConcreteType).something = "boop"KamilH
01/21/2022, 7:32 AMvarreplaceMutableListmutableStateOfColton Idle
01/21/2022, 7:44 AMKamilH
01/21/2022, 7:52 AMvm.state.people.forEach {
    TextButton(onClick = {
    it.selected = true
})peopleTextButtonLazyColumnColton Idle
01/21/2022, 8:01 AMval list = mutableListOf<Item>()Colton Idle
01/21/2022, 8:05 AMvar list = listOf<Item>()Colton Idle
01/21/2022, 8:06 AMColton Idle
01/21/2022, 8:49 AMColton Idle
01/21/2022, 9:01 AMKamilH
01/21/2022, 9:12 AMZach Klippenstein (he/him) [MOD]
01/21/2022, 4:34 PM