https://kotlinlang.org logo
#compose
Title
# compose
b

Big Chungus

11/10/2020, 6:24 PM
For the love of god, I can't find anything on the web that's tell me how to build a simple dropdown menu with compose? Do you guys have any suggestions for that?
b

Big Chungus

11/10/2020, 8:07 PM
I see you're using
rememberMutableState
what's the difference between that and
mutableStateOf
c

cb

11/10/2020, 9:27 PM
That's just a shortcut version of
remember { mutableStateOf(...) }
. I should remove that tbh
b

Big Chungus

11/10/2020, 9:33 PM
Mind explaning why just mutableStateOf doesn't work
b

Big Chungus

11/11/2020, 12:05 AM
Yummy!
2 Views