Nick Kleban
Nick Kleban
I have similar issue with Retrofit 2.9 (checked versions down to 2.6.2 too) and gradle plugin 4.2.2 with minifyEnabled=true `Method return type must not include a type variable or wildcard:...
Hi @wzieba seems like there is no any progress on this issue, how can I help you with this enhancement?
We currently are using simpler solution ``` Box( modifier = Modifier .padding(paddingValues) //.consumeWindowInsets(paddingValues), in case if you have internal scaffolds ) { CurrentTab() } ```
Have you tried setting `disposeNestedNavigators = false` in the root navigator?
There are two main approaches that I know: 1. With UiState - set some flag that indicates you need to navigate somewhere, then consume it by unsetting it `screenmodel.navigetedToSomeScreen()`. 2....
You can check [here](https://github.com/adrielcafe/voyager/issues/149) how to handle new intent. Then you just parse info you need and navigate.
@jrodbx updated description with repro project
@Taranuyk-Maksim Not really. Temporary I guess it possible to remove `TestLogEvent.STANDARD_ERROR` form events set, but I don't want to miss something more serious than this. ``` testLogging { events =...
And I've checked - by default enabling Layout Inspector does not recreate the activity. So probably it somehow related to the fact that screens stack is also not restored properly.
My best guess that you're using nested navigator instead of root navigator from your current tab to do Logout -> Login -> Main and you end up opening one more...