CLOVIS
08/06/2021, 10:26 AMval Component = fc<RProps> {
if (…)
useRef() // big no no
}
Is that an issue Compose shares? Or is this safe?
@Composable
fun Component() {
if (…)
val a by remember { … }
}
CLOVIS
08/06/2021, 10:27 AMval
declaration in a braceless-if
)Andrey Kulikov
08/06/2021, 11:15 AMCLOVIS
08/06/2021, 12:02 PMOleg Khotskin
08/06/2021, 12:38 PMAndrey Kulikov
08/06/2021, 1:07 PM