Full Guide to Nested Navigation Graphs in Jetpack Compose

  Рет қаралды 67,253

Philipp Lackner

Philipp Lackner

Күн бұрын

Пікірлер: 92
@raghavaggarwal8644
@raghavaggarwal8644 Жыл бұрын
Hi Philipp, though I understood the whole video and it's context but I just think it would have been a little better if you could have added some pictorial demonstration of the navigation which you are taking as an example. Great content as usual!
@ChrisAthanas
@ChrisAthanas Жыл бұрын
I added the example you have asked for, I put a PR for the code in Phillip's repo for this video
@abhilashpatel6852
@abhilashpatel6852 7 ай бұрын
@@ChrisAthanas could not find. could you please share your link here?
@fredericoamigo
@fredericoamigo 9 ай бұрын
Hey man! Thank you so much for making these brilliant hands on tutorial vids for Jetpack Compose. They are really high quality and help me out a lot. Keep up the good work! You are truly one of the best code-KZbinrs out there!
@duongvu6029
@duongvu6029 Жыл бұрын
One downside to call out for this approach is that you won't be able to wrap, say, the calendar nested graph inside a Scaffold for things like tab navigation. You either have to wrap the whole NavHost inside one Scaffold and optionally show/hide the app nav bars or use a single composable() as a container for multiple tabs.
@learningCodingWithMe
@learningCodingWithMe 10 ай бұрын
Exactly the problem im facing. I want to wrap a nested graph inside a modal drawer (a side menu) for tab navigation. Im trying to search for a way to nest navhosts
@n2749
@n2749 8 ай бұрын
Damn I finally understand, thank you. I couldn’t figure out how to move from one screen to another. Each time, for some reason, I got the controller out again through the remember. Now it’s clear, thank you again
@EdwinRebolledo
@EdwinRebolledo Ай бұрын
Hey Philipp Lackner thanks! very helpful! a question, that sharedViewmodel is belongs to the viewmodel class itself? i mean, if i need a common viewmodel for all my graph, should I use your approach explained in this example?
@Narazgul
@Narazgul Жыл бұрын
Wie gewohnt toller Content der mir direkt wieder weiter hilft! Noch ein kleiner Verbesserungsvorschlag: Eine Grafik, die den gesamten Prozess schematisch darstellt kann hier wohlmöglich noch für weitere Klarheit sorgen. Ich persönlich würde vermutlich auch jedem Nested Graph seine eigene file geben, da es in größeren Programmen für mich schnell unübersichtlich wird. Dann kann man schon in der Ordnerstruktur ablesen, welche Graphs es gibt. Wohlmöglich korrelieren die dann sogar mit Feature Modulen und helfen bei der Übersicht über das Projekt ✌
@ChrisAthanas
@ChrisAthanas Жыл бұрын
I fixed this example and added UI elements, the PR is available in Philitps' Repo for this video
@KristinVeck
@KristinVeck Жыл бұрын
Thank you for this video. Sharing the view model between the screens in the nested graph was EXACTLY what I was trying to figure out.
@neerajverma9226
@neerajverma9226 7 ай бұрын
We need more detailed video on this topic such as how to navigate between nested graphs and pass data between
@SanjarSuvonov
@SanjarSuvonov Жыл бұрын
Hi Philipp, please show us navigation with bottombar(bottom navigation view). It has two navGraph. Managing these is a problem. Make a video about it.
@kinggeorges625
@kinggeorges625 11 ай бұрын
Looking also for it
@ahmrh
@ahmrh Жыл бұрын
i searched everywhere for this and your videos always helped me, thank you!
@stoyan_vuchev
@stoyan_vuchev Жыл бұрын
Just on time for another great guide! I was not aware that it is possible to pop the whole navigation graph using the graph route. I've been using the start destination route for poping the back stack the whole time. 😅
@ericwathome783
@ericwathome783 Жыл бұрын
I was really thinking of implemetning this in a project I'm working on. Thanks for this man
@RichardMaidenCG
@RichardMaidenCG Жыл бұрын
The solution I was looking for, thanks a lot, Philipp! I love your videos
@codelabs.99
@codelabs.99 3 ай бұрын
Thanks for the video. Keep up the good work!
@xavierrispal9605
@xavierrispal9605 Жыл бұрын
Quite interesting video !! Thanks for that. Does it mean you don't use anymore this dependency (raamcosta/compose-destinations) in your projects ?
@DAVIDOZERSKY
@DAVIDOZERSKY 5 ай бұрын
HI Phillip, as always this was an excellent video! I have a usecase that requires possibly infinite nested navigation. How would one accomplish this? Ideally we could reuse a screen or route and continually add new instances of the screen onto the backstack. Is this possible? The data is in a tree structure which we is returned in a single API call; so we know the depth of the screens we need in the first element. Interacting with the different screens is really just navigating up and down the tree; and on each screen the user is required to make selections. Some of those selections may have customizations which require selections (or sub-selections); and in order to make the selections for the customization requirements the user needs to navigate into a new screen with a lazylist that renders the customization options for that selection. So in order to determine whether a screen is in a valid state you need to have the validation state of the nested screens. This seems a bit awkward for composables. I'd prefer to use one data structure/object for the whole thing to enable screens to not have to figure out what is going on with the next level of nesting. The UI state of a screen would be managed by remember/mutable states for itself (ie the screen selections & are the requirements for that screen met) so the user can interact with a screen and the UI will recompose; but those mutable states would vary depending on the number of requirements of any given screen. I hope that this answers other peoples questions as well :)
@USS_Daedalus
@USS_Daedalus Жыл бұрын
Phillip is probably one of the biggest Android Influencers of the World? At least no other KZbinrs comes in my mind. I like his Germany efficiency that i am very familiar with 😂
@SuperBodet
@SuperBodet Жыл бұрын
It would be great if it was illustrated with a sample demo
@norayrmovsisyan
@norayrmovsisyan Жыл бұрын
Hi Philipp. Thank you for great video. Hope we will see such a videos too long time.
@ngomdecadetkamdaou3464
@ngomdecadetkamdaou3464 Жыл бұрын
Right at the best moment. Thanks, Philipp, you are amazing!
@umairnazim3565
@umairnazim3565 Ай бұрын
Nice explanation
@frankyjunior6005
@frankyjunior6005 Жыл бұрын
Please make video nested nav with compose destinations libs. Thank you
@robchr
@robchr 6 ай бұрын
Thanks a lot. This saved my bacon from having to do a huge refactor!
@ngapps
@ngapps 11 ай бұрын
I wonder how it gonna be in larger project, where you have signin/signup feature and 5 screens under Navigation Rail / Bottom Navigation. Should it be like Main NavHost, Nested navigation graph for login, Nested navigation graph for main app, with 5 nested graphs inside?
@negindelfani
@negindelfani Жыл бұрын
Hi philipp,Thank you for good videos,I had a question.I cant speak english very well,sory.Im making an app that have an screen where 3 cards are define with LazyVerticalGrid ,each card navigates to a diffrent screen.now I dont know how can I define the code for clickable that the user will go to his own screen by clicking on each card?🙄
@purplehazer417
@purplehazer417 Жыл бұрын
What about navigation between screens with topbar + bottomNavBar and full-size screens? Full size screens might be located in another NavHost which is 'above' the NavHost with screens with top-bottom bars. But then, how would it be possible to navigate from parent NavHost to child NavHost?
@bohdanzaichenko
@bohdanzaichenko Жыл бұрын
yo I face the same problem, have you found any solution for this?
@anaibrahim4361
@anaibrahim4361 Жыл бұрын
I'm about to ask the same thing. This approach (demonstrated in the video) is for when all of the screens have the same screen theme (top bar, bottom nav bar), but -as an example- if the authentication feature doesn't have a bottom nav bar or a top bar and the main feature screen has a top bar or bottom nav bar, it would be difficult to control it using this approach. According to my experience, one possible solution is to consider the main activity as a shell, and make the navbar visible state a global state that can be controlled each time the user navigates to a specific screen, so that whenever the user navigates to a screen that doesn't require the bottom nav bar, the visibility state is changed to false. We'd appreciate it if you could emphasize the best practices for handling such case.
@petrtrac3285
@petrtrac3285 5 ай бұрын
Hi, I cannot find any nice example how to pass nav arguments into nested nav graph down to start destination.
@harwinderbenipal5332
@harwinderbenipal5332 9 ай бұрын
Do you have any jetpack compose course very beginner (noob) to pro. Including everything viewmodels, architecure , depemdy injection , accesing files, modfying, database, repositrys, online offloine etc?? if yes please share the link
@sanketgawande3667
@sanketgawande3667 10 ай бұрын
I was doing exactly same thing, different route group for auth and root app. But ended up embedding another nav host into one of route screen and it was crashing app on visiting the page. This could help me understand nested routing.
@4ytonly
@4ytonly Жыл бұрын
How about a video where you show us how to properly update all dependencies in gradle!? :)
Жыл бұрын
Srsly? 😂
@4ytonly
@4ytonly Жыл бұрын
@ ?
@luciendurand-hardy5197
@luciendurand-hardy5197 Жыл бұрын
Thanks for the video, you rock. Very efficient. I didn't find a good practive to navigate from the view model. For example, on the login screen, when you click on the login button, it will trigger a flow that emit loadings ui state then a success state at the end, how to navigate then? - sol 1 : pass a nivagateTo...() lambda function to the @composable screen and check the state in the @composable screen (when uistate is Success, navigateTo...()) - sol 2 : pass a lambda function to the view model and call it from there - sol 3 : the third and best solution Any idea to achieve that properly?
@corneliubejan226
@corneliubejan226 Жыл бұрын
Hi Philipp! How to prevent involuntary recomposition ? 1) Same "fragment" on the screen many recomposition 2) When i navigate to other screen all prev screens recompose . Is this ok ? Can you please provide any fix usign states (HomeState like in your videos ) ? Thanks
@johanofcourse
@johanofcourse Жыл бұрын
Why would you need the helper function if you use dependency injection and already have a instance of the viewmodel created?
@taslimfi
@taslimfi Жыл бұрын
Hi Philipp, could you share how to go to specific screen in other nested graph from another nested graph?
@producedbysimon3660
@producedbysimon3660 Жыл бұрын
Pretty simple, just add two navigate calls, one to the nested navgraph routes, then the second is to the screen route in the nested navgraph
@jayeshkumar9848
@jayeshkumar9848 Жыл бұрын
I was using 2.5.3 version, now when I want to update to 2.7.2 am facing some issues, is there any major changes need to be done?
@mustafaozturk8569
@mustafaozturk8569 3 ай бұрын
,İ love You Man !!!!!!!!.Thank u So much !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@mark-147
@mark-147 8 ай бұрын
Why do we pass around navController rather than defining a CompositionLocal like LocalNavigator?
@MenaSamer
@MenaSamer 11 ай бұрын
what about if I want to navigate to a screen from a nested graph to another but this screen is not the default destination ... in the video, if I want to navigate from the login to calendar_entry not calendar_overview
@umardev500
@umardev500 7 ай бұрын
do have a video about screen transition?
@jpromero9391
@jpromero9391 Жыл бұрын
We need another video for nested navigation
@geraldjaylagarto6839
@geraldjaylagarto6839 11 ай бұрын
How do you address the deeplinking on this nested graphs?
@gurustudioyoutube
@gurustudioyoutube Жыл бұрын
Hi, Is there any library or sdk that can help to measure a distance from object. not asking for measure a object. for example: how do i know how far i am from a particular object if you have any suggestion let me know
@ВолодимирФедючко
@ВолодимирФедючко 9 ай бұрын
Nice, thanks!
@vickedvuljo
@vickedvuljo Жыл бұрын
How would you handle the case when start destination of the graph accepts optional arguments, since you are navigating to "auth" and not, lets say, login?email={email}
@vinaykumarpatel649
@vinaykumarpatel649 Жыл бұрын
I wonder is there any changes on how we use Hilt on Jetpack?
@mortitotti
@mortitotti Жыл бұрын
Thanks Philip for another wonderful video. I have a question, what if I want to share a Koin view model instead of normal view model. How the sharedViewModel function should look like? I tried to solve it with scopes, but couldn't find the soultion: ` @Composable inline fun NavBackStackEntry.sharedViewModel( navController: NavController ): T { val navGraphRoute = destination.parent?.route ?: return koinViewModel() val parentEntry = remember(this) { navController.getBackStackEntry(navGraphRoute) } val scope = rememberUpdatedState(KoinJavaComponent.getKoin().getScope(parentEntry.id)) return scope.value.get() } `
@alonshlider4881
@alonshlider4881 Жыл бұрын
Didn't you say your going to use the destinations library going forward instead of the awful accompanist one?
@aryaadikusuma5933
@aryaadikusuma5933 11 ай бұрын
so how integrates this with bottom nav, since that must contains own nav host and having nested nav host can cause the app to crash. Very confusing in here 🤯
@chummy4422
@chummy4422 Жыл бұрын
You can popUpTo(0) or other id or route that your app doesn’t have to remove all the backStack
@ravikumarmohan1415
@ravikumarmohan1415 9 ай бұрын
How do you actually navigate from one navHost to another in this case... Could anyone please explain?
@Landofcoding
@Landofcoding Жыл бұрын
Very informative and helpful tutorial
@umardev500
@umardev500 7 ай бұрын
how about with bottom tab and nested
@sebastianseno9285
@sebastianseno9285 Жыл бұрын
Nice video as always,
@lorenzosuarez1126
@lorenzosuarez1126 Жыл бұрын
Nice video! 🚀
@lutfiikbalmajid
@lutfiikbalmajid Жыл бұрын
Sorry, i have followed you for a while since i learn jetpack compose. Maybe you can give the view result everytime you make the tutorial hehe
@tousifjaved3485
@tousifjaved3485 Жыл бұрын
Update all the playlists Add your recent videos to the corresponding playlist I will be helpful for beginners like me to understand all the topics
@TheMikkelet
@TheMikkelet Ай бұрын
Why havent the compose team implemented shared-viewmodels already? A year later and this janky solution (no offense) is still the best option....
@ryokuman1916
@ryokuman1916 Жыл бұрын
I don't know why, all of your videos which is adding some new implements like lifecycle or something like this video and calculator I can't build anything really it always has an error for duplicated implements I think there is a prob with your impllements, can you check them?
@dikenmhrz3902
@dikenmhrz3902 Жыл бұрын
How does this work with deeplink?
@FreedivingTrainer
@FreedivingTrainer Жыл бұрын
btw standard jetpack navigation for Compose just is pain
@adamfatyga7977
@adamfatyga7977 Жыл бұрын
I write Your code from video: App crash without errors I copy app from Git: App crash without errors Win10, AS Giraffe, Pixel XP API 33 emulator.
@PhilippLackner
@PhilippLackner Жыл бұрын
An app never crashes without an error
@adamfatyga7977
@adamfatyga7977 Жыл бұрын
@@PhilippLackner So, i dont know where to find it. 'Run', 'Debug' and 'Problems' show nothing.
@adamfatyga7977
@adamfatyga7977 Жыл бұрын
@@PhilippLackner FATAL EXCEPTION: main Process: com.plcoding.nestednavigationgraphsguide, PID: 4926 java.lang.IllegalArgumentException: navigation destination home is not a direct child of this NavGraph
@PhilippLackner
@PhilippLackner Жыл бұрын
@@adamfatyga7977 logcat
@adamfatyga7977
@adamfatyga7977 Жыл бұрын
@@PhilippLackner Can You help me?
@BaBaKRaufi
@BaBaKRaufi Жыл бұрын
Good
@brigadut
@brigadut 3 ай бұрын
Very weird syntax
@raja_uma1r
@raja_uma1r Жыл бұрын
I use a different approach when I want to use a shared view model and have no more than two screens. 1. Create an enum class and a compose mutableState variable using that enum. Dont forget to wrap it in remember block. 2. Declare a when condition passing in that variable and calling your screen composables based on the changing value of the state variable. 3. Change the state in callback lambdas on however you want to navigate through screens. Edit:- 4. You can use BackHandler composable to redirect system Back button callback to your Composables callback lambdas.
@PhilippLackner
@PhilippLackner Жыл бұрын
There's a reason why we have a backstack on Android 😅
@raja_uma1r
@raja_uma1r Жыл бұрын
I know about that situation very well, I'm just saying that it's a simple approach when you've no more than two related screens that need a shared view model. BackHandler can be used to redirect system back button callback to navigate using system back button.
@andrewdunbar828
@andrewdunbar828 Жыл бұрын
Only A few do it right.
@dleonardo3238
@dleonardo3238 8 ай бұрын
Damm Compose navigation sucks badly
@LEEJIHUN
@LEEJIHUN Жыл бұрын
The video is good, but it's a bit of a shame not to check the results
@fazalulabid8483
@fazalulabid8483 Жыл бұрын
Great as always
@drideonng1828
@drideonng1828 Жыл бұрын
Need your with an android studio project but can't find your email in the about section. Please
@CodePursuit
@CodePursuit 5 ай бұрын
is there more better way than this? @PhilippLackner
Full Guide to Jetpack Compose Effect Handlers
24:56
Philipp Lackner
Рет қаралды 96 М.
MVVM vs. MVI - Understand the Difference Once and for All
18:40
Philipp Lackner
Рет қаралды 48 М.
СОБАКА И  ТРИ ТАБАЛАПКИ Ч.2 #shorts
00:33
INNA SERG
Рет қаралды 1,7 МЛН
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 275 #shorts
00:29
Yay, My Dad Is a Vending Machine! 🛍️😆 #funny #prank #comedy
00:17
Navigation Basics in Jetpack Compose
14:40
Stevdza-San
Рет қаралды 67 М.
Type-Safe Nested Navigation in Jetpack Compose | Ultimate Guide
12:39
Himanshu Gaur
Рет қаралды 2,3 М.
Should You Use Compose State or StateFlow in Your ViewModels?
13:59
Philipp Lackner
Рет қаралды 80 М.
25 - Nested NAVIGATION - Android Jetpack Compose
16:07
Mohsen Mashkour
Рет қаралды 8 М.
Type-Safe Navigation with the OFFICIAL Compose Navigation Library
10:03
95% Don't Understand THIS About Coroutines (Main-Safety)
9:38
Philipp Lackner
Рет қаралды 30 М.
The ULTIMATE Guide to Sharing Data Between Screens in Jetpack Compose
24:08
Being Competent With Coding Is More Fun
11:13
TheVimeagen
Рет қаралды 105 М.
ViewModels & Configuration Changes - Android Basics 2023
18:46
Philipp Lackner
Рет қаралды 128 М.
СОБАКА И  ТРИ ТАБАЛАПКИ Ч.2 #shorts
00:33
INNA SERG
Рет қаралды 1,7 МЛН