Hi, I'm building a Compose Multiplatform app that ...
# compose
d
Hi, I'm building a Compose Multiplatform app that has a screen with around 12 TextFields. Is there a way to use the states more compacted than 12
rememberSaveable{}
? Any best practice for state handling with that many state properties?
f
consider creating a state holder where you define your textfield states
d
Thanks. Totally forgot about the state holder. 🙇
o
@Francesc this is super cool. I've been doing it the hard way all this while 😔 Thanks for sharing