When building a purely compose application, where ...
# compose
c
When building a purely compose application, where do I out the logic for "if user is logged out, go to LoggedOutScreenComposable". Currently I'm passing shared prefs into my main App composable and doing the check there but that seems wrong, although it works.
m
You can use Jetpack DataStore for your usecase