Industry Level Compose App, Navigation and Scaffold
I am trying to build a complex app, that has multiple different nav graphs, screens etc. I got stuck while implementing the Flow for Login.
Industry Level Compose App, Navigation and Scaffold
I am trying to build a complex app, that has multiple different nav graphs, screens etc. I got stuck while implementing the Flow for Login.
Type safe navigation: Starting destination with argument
At one point in my app I want to navigate to a nested graph that’s starting destination requires an ID from the previous screen, but I get an error:
Type safe navigation: Starting destination with argument
At one point in my app I want to navigate to a nested graph that’s starting destination requires an ID from the previous screen, but I get an error:
Type safe navigation: Starting destination with argument
At one point in my app I want to navigate to a nested graph that’s starting destination requires an ID from the previous screen, but I get an error:
Jetpack Compose: Using list-size as key for remember not working as expected
I have a Person class, with a mutable list of email addresses.
In the following Composable, the list is displayed and I want to allow the addition of new and the deletion of existing email addresses.
Refreshing the screen
I wrote my first app. It displays a simple screen with an addition to complete. If the given answer is correct, I would like to refresh the screen to display a new calculation.
Currently, the old calculation remains, and the new one is inserted on the top.
fillMaxWidth() not working when using it in childrens of scrollable horizontal containers
fillMaxWidth
with a value of 0.5f is not working, instead, is wrapping to the content width.
How to implement it correctly MediaPlayer (jetpack compose)
I’m trying to implement a media player with the ability to stop and start audio when the app goes into the background, but it doesn’t work as expected… When the app comes back, the music doesn’t play again. I think this is because my copy of the media player doesn’t survive the app going into the background, can you tell me what I can do about it?
Jetpack Compose strange transition using AnimatedContent between Text & Box Layout
I explore about Jetpack Compose, and create a simple PIN Indicator composable view. I add AnimatedContent
to switch between two composable: Text & Box Layout.