For the love of god, I can't find anything on the ...
# compose
b
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
I see you're using
rememberMutableState
what's the difference between that and
mutableStateOf
c
That's just a shortcut version of
remember { mutableStateOf(...) }
. I should remove that tbh
b
Mind explaning why just mutableStateOf doesn't work
b
Yummy!