Тёмный

Full Guide to Nested Navigation Graphs in Jetpack Compose 

Philipp Lackner
Подписаться 170 тыс.
Просмотров 57 тыс.
50% 1

In this video you'll learn everything you need about nested navigation graphs in Jetpack Compose.
⭐ Get certificates for your future job
⭐ Save countless hours of time
⭐ 100% money back guarantee for 30 days
⭐ Become a professional Android developer now:
pl-coding.com/premium-courses...
Get my FREE PDF about 20 things you should never do in Jetpack Compose:
pl-coding.com/jetpack-compose...
💻 Let me be your mentor and become an industry-ready Android developer in 10 weeks:
pl-coding.com/drop-table-ment...
Subscribe to my FREE newsletter for regular Android, Kotlin & Architecture advice!
pl-coding.com/newsletter
Join this channel to get access to perks:
/ @philipplackner
Get the source code for this video here:
github.com/philipplackner/Nes...
Join my Discord server:
/ discord
Regular programming advice on my Instagram page: / _philipplackner_
Checkout my GitHub: github.com/philipplackner
You like my free content? Here you can buy me a coffee:
www.buymeacoffee.com/philippl...

Опубликовано:

 

23 май 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 86   
@user-qq3kq3hc4e
@user-qq3kq3hc4e 10 месяцев назад
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.
@fredericoamigo
@fredericoamigo 4 месяца назад
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-RU-vidrs out there!
@ahmrh
@ahmrh Год назад
i searched everywhere for this and your videos always helped me, thank you!
@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 3 месяца назад
@@ChrisAthanas could not find. could you please share your link here?
@RichardMaidenCG
@RichardMaidenCG 8 месяцев назад
The solution I was looking for, thanks a lot, Philipp! I love your videos
@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. 😅
@n2749
@n2749 3 месяца назад
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
@ngomdecadetkamdaou3464
@ngomdecadetkamdaou3464 Год назад
Right at the best moment. Thanks, Philipp, you are amazing!
@ericwathome783
@ericwathome783 Год назад
I was really thinking of implemetning this in a project I'm working on. Thanks for this man
@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 ✌
@duongvu6029
@duongvu6029 8 месяцев назад
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 6 месяцев назад
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
@norayrmovsisyan
@norayrmovsisyan Год назад
Hi Philipp. Thank you for great video. Hope we will see such a videos too long time.
@ChrisAthanas
@ChrisAthanas Год назад
I fixed this example and added UI elements, the PR is available in Philitps' Repo for this video
@xavierrispal9605
@xavierrispal9605 Год назад
Quite interesting video !! Thanks for that. Does it mean you don't use anymore this dependency (raamcosta/compose-destinations) in your projects ?
@Landofcoding
@Landofcoding Год назад
Very informative and helpful tutorial
@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 6 месяцев назад
Looking also for it
@user-sc6gv3gf4t
@user-sc6gv3gf4t 4 месяца назад
Nice, thanks!
@lorenzosuarez1126
@lorenzosuarez1126 Год назад
Nice video! 🚀
@sebastianseno9285
@sebastianseno9285 Год назад
Nice video as always,
@neerajverma9226
@neerajverma9226 3 месяца назад
We need more detailed video on this topic such as how to navigate between nested graphs and pass data between
@SuperBodet
@SuperBodet Год назад
It would be great if it was illustrated with a sample demo
@frankyjunior6005
@frankyjunior6005 8 месяцев назад
Please make video nested nav with compose destinations libs. Thank you
@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?
@ngapps
@ngapps 7 месяцев назад
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?
@jpromero9391
@jpromero9391 10 месяцев назад
We need another video for nested navigation
@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
@fazalulabid8483
@fazalulabid8483 Год назад
Great as always
@robchr
@robchr Месяц назад
Thanks a lot. This saved my bacon from having to do a huge refactor!
@sanketgawande3667
@sanketgawande3667 6 месяцев назад
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.
@umardev500
@umardev500 3 месяца назад
do have a video about screen transition?
@USS_Daedalus
@USS_Daedalus Год назад
Phillip is probably one of the biggest Android Influencers of the World? At least no other RU-vidrs comes in my mind. I like his Germany efficiency that i am very familiar with 😂
@DAVIDOZERSKY
@DAVIDOZERSKY 10 дней назад
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 :)
@vinaykumarpatel649
@vinaykumarpatel649 9 месяцев назад
I wonder is there any changes on how we use Hilt on Jetpack?
@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
@johanofcourse
@johanofcourse 11 месяцев назад
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
@geraldjaylagarto6839
@geraldjaylagarto6839 7 месяцев назад
How do you address the deeplinking on this nested graphs?
@jayeshkumar9848
@jayeshkumar9848 8 месяцев назад
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?
@petrtrac3285
@petrtrac3285 17 дней назад
Hi, I cannot find any nice example how to pass nav arguments into nested nav graph down to start destination.
@harwinderbenipal5332
@harwinderbenipal5332 5 месяцев назад
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
@4ytonly
@4ytonly Год назад
How about a video where you show us how to properly update all dependencies in gradle!? :)
Год назад
Srsly? 😂
@4ytonly
@4ytonly Год назад
@ ?
@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}
@umardev500
@umardev500 2 месяца назад
how about with bottom tab and nested
@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 11 месяцев назад
yo I face the same problem, have you found any solution for this?
@anaibrahim4361
@anaibrahim4361 10 месяцев назад
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.
@user-dz1pf3vu3j
@user-dz1pf3vu3j 7 месяцев назад
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?🙄
@MenaSamer
@MenaSamer 6 месяцев назад
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
@mark-147
@mark-147 4 месяца назад
Why do we pass around navController rather than defining a CompositionLocal like LocalNavigator?
@BaBaKRaufi
@BaBaKRaufi Год назад
Good
@chummy4422
@chummy4422 Год назад
You can popUpTo(0) or other id or route that your app doesn’t have to remove all the backStack
@aryaadikusuma5933
@aryaadikusuma5933 6 месяцев назад
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 🤯
@dikenmhrz3902
@dikenmhrz3902 Год назад
How does this work with deeplink?
@alonshlider4881
@alonshlider4881 Год назад
Didn't you say your going to use the destinations library going forward instead of the awful accompanist one?
@ravikumarmohan1415
@ravikumarmohan1415 4 месяца назад
How do you actually navigate from one navHost to another in this case... Could anyone please explain?
@FreedivingTrainer
@FreedivingTrainer Год назад
btw standard jetpack navigation for Compose just is pain
@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
@lutfiikbalmajid
@lutfiikbalmajid 8 месяцев назад
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
@ryokuman1916
@ryokuman1916 8 месяцев назад
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?
@adamfatyga7977
@adamfatyga7977 7 месяцев назад
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 7 месяцев назад
An app never crashes without an error
@adamfatyga7977
@adamfatyga7977 7 месяцев назад
@@PhilippLackner So, i dont know where to find it. 'Run', 'Debug' and 'Problems' show nothing.
@adamfatyga7977
@adamfatyga7977 7 месяцев назад
@@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 7 месяцев назад
@@adamfatyga7977 logcat
@adamfatyga7977
@adamfatyga7977 7 месяцев назад
@@PhilippLackner Can You help me?
@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 9 месяцев назад
Only A few do it right.
@LEEJIHUN
@LEEJIHUN Год назад
The video is good, but it's a bit of a shame not to check the results
@dleonardo3238
@dleonardo3238 3 месяца назад
Damm Compose navigation sucks badly
@mortitotti
@mortitotti 10 месяцев назад
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() } `
@drideonng1828
@drideonng1828 Год назад
Need your with an android studio project but can't find your email in the about section. Please
@panwar2001
@panwar2001 24 дня назад
is there more better way than this? @PhilippLackner
Далее
Nested Navigation | Jetpack Compose
15:57
Просмотров 26 тыс.
FUN&SUN | Update 0.29.0 Trailer | Standoff 2
02:32
Просмотров 1,2 млн
Ozoda - JAVOHIR ( Official Music Video )
06:37
Просмотров 1,4 млн
23 - NAVIGATION - Android Jetpack Compose
19:25
Просмотров 9 тыс.
Bottom Nav Bar #03 | Material 3 | Jetpack Compose
12:21
Git MERGE vs REBASE
16:12
Просмотров 1 млн
Everything you need to know about Kotlin 2.0 🟣
11:05
Navigation Basics in Jetpack Compose
14:40
Просмотров 62 тыс.
ARRAYLIST VS LINKEDLIST
21:20
Просмотров 50 тыс.