What is the best way to apply guidance flow when t...
# compose
a
What is the best way to apply guidance flow when the user open the app for first time like this
r
1. Compose a @Composable component in the root wrapped in
Box{}
and make it invisilibe 2. Create a state holder class where you can control position and visibility of the component 3. Pass the controller class LocalBlablablaController via
compositionLocal
4. From anywhere in UI hierarchy access the controller via LocalBlablablaController and show it
a