Colton Idle
09/16/2021, 5:41 AMup
button, I know that both
navController.navigateUp()
and
navController.popBackStack()
do the same thing, but which one should be used for the up action specifically. navigateUp
right?Albert Chang
09/16/2021, 5:51 AMOrhan Tozan
09/16/2021, 7:44 AMStylianos Gakis
09/16/2021, 7:48 AMFelix Schütz
09/16/2021, 1:35 PMpopBackStack()
and navigateUp()
never leave the app.Orhan Tozan
09/16/2021, 1:35 PMFelix Schütz
09/16/2021, 1:40 PMnavigateUp()
uses popBackStack()
, unless the app's back stack is empty.Felix Schütz
09/16/2021, 1:41 PMOrhan Tozan
09/16/2021, 1:41 PMIan Lake
09/16/2021, 1:48 PMColton Idle
09/16/2021, 1:59 PMFelix Schütz
09/16/2021, 2:18 PMpopBackStack
and navigateUp
would navigate to search. Or am I wrong?Ian Lake
09/16/2021, 2:39 PMIan Lake
09/16/2021, 2:40 PMColton Idle
09/16/2021, 2:41 PMFelix Schütz
09/16/2021, 2:46 PMIan Lake
09/16/2021, 3:29 PMFelix Schütz
09/16/2021, 3:37 PMIan Lake
09/16/2021, 3:55 PMFelix Schütz
09/16/2021, 3:58 PMScaffold
over the bottom bar, but I don't know if that can be easily implemented.Stylianos Gakis
09/17/2021, 7:36 AMAlbert Chang
09/17/2021, 7:39 AMModifier.zIndex(1f)
on the composable you want it to be at top.Felix Schütz
09/17/2021, 7:49 AMFelix Schütz
09/17/2021, 7:51 AMScaffold > NavHost > Screen
. I need to change the zIndex
of a specific screen, but this does not affect the drawing order in Scaffold
.Albert Chang
09/17/2021, 7:56 AMFelix Schütz
09/17/2021, 7:57 AMNavHosts
?Stylianos Gakis
09/17/2021, 8:13 AMFelix Schütz
09/17/2021, 8:17 AMNavGraphBuilder
function to insert common composables for certain destinations? I'm really unsure.Felix Schütz
09/17/2021, 9:43 AMJason Ankers
10/14/2021, 7:47 AMIan Lake
10/14/2021, 1:13 PMModalBottomSheetLayout
above your global Scaffold
Ian Lake
10/14/2021, 1:16 PMJason Ankers
10/14/2021, 1:30 PMJason Ankers
10/14/2021, 1:31 PMJason Ankers
10/14/2021, 1:40 PMIan Lake
10/14/2021, 1:48 PMModalBottomSheetLayout
must be as high up the Composable hierarchy as it needs to be to overlap everything inside it is just how that API works; nothing Accompanist provides will ever be able to change that - that whole core API would need to changeIan Lake
10/14/2021, 1:51 PMOleksandr Balan
10/19/2021, 8:09 PMJason Ankers
10/20/2021, 3:20 AM