https://kotlinlang.org logo
Title
a

AmrJyniat

12/23/2021, 7:27 PM
What is the best way to apply guidance flow when the user open the app for first time like this
r

rsktash

12/23/2021, 8:21 PM
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

Andrey Kulikov

12/23/2021, 11:11 PM