25 - Nested NAVIGATION - Android Jetpack Compose

preview_player
Показать описание
In this video, we will learn about nested navigation in jetpack compose

you will learn
How to do nested navigate in jetpack compose
How to define routes with sealed class

---------------------------------------------------

If you like the content, buy me a coffee by clicking on this link. ☕☕☕

Dependency:
dependencies {
val nav_version = "2.7.1"

}

Jetpack compose tutorial:

Source Codes:

---------------------------------------------------
Timestamps:
00:00 Introduction
02:22 Project structure and materials
04:45 Sealed Class
06:30 Navigation graph
15:07 Testing the app
15:48 Ending
---------------------------------------------------
Join me on social media:
MkrDeveloper website:
MkrDeveloper Instagram page:
MkrDeveloper Telegram Chanel:
MkrDeveloper Discord server:
.
.
.
.
#Android
#jetpack_compose
#kotlin
#android_studio
#kotlin_course
#android_tutorial_beginners
#android_developers
#navigation_android_jetpack_compose
Рекомендации по теме
Комментарии
Автор

If you have any requests about the tutorials that you want to see, just leave a comment below! Thanks for watching :)

MohsenMashkour
Автор

This was much more helpful than the docs

geko
Автор

Super Thank you, i was searching this video from 2 week, thanks a lot, You are a valuable content creator on Youtube.

AbhiRetro
Автор

Thanls you man! Your vidoes are pretty entertatining and informative at the same time! Please continue!

bigpiglove
Автор

I love you, I almost died on this one, you're the GOAT,

techug
Автор

Really nice content and quite simple to understand. Thanks!!

MauricioSouza-
Автор

I like the way you chose to explane it all. Only essential things but in xml-ed layout navigation view as i remember there was like a tray and were tabs with color shaded on related screen. Your navigation doesnt look similar to that tray . Im looking for that tray with tabs. Because its handy while handling the app by a thumb only. Without reaching out to inconvinient parts of screen. For better user expirience and such things

god_bika
Автор

You explain very clearly what you are doing thanks and keep it up

macbros
Автор

Çok güzel, çok şey öğrendim.
Very nice, I learned a lot.

insanotu
Автор

That's a good approach. Perhaps do you know how to restore the screen from 1-nested navigation graph, if we navigate in 2-navigation graph and roll back?

SyncImpl
Автор

Thanks a lot. I get every thing now. You sometimes forget to zoom your code editor for us.

planeta
Автор

Why your video quality options was not there in your video ?

ranjitapadhi
Автор

How we can share viewmodel instance between different screens in this nested navigation?

ankitkhyalia
Автор

sir where is the source code of this video, in the link you put the source code of previous video

manishvipin
Автор

how do i do it if i have 2 set of UI screeens for different users ? i have a radio button that lets users choose their user types how can i connect it to the nav?

gloooooom
Автор

can u give me a explain why u have create this ?
sealed class Screens(val route: String){
object ScreenLoginRoute : Screens(route = "Login")
object ScreenForgetPassRoute : Screens(route = "ForgetPass")
object ScreenRegisterRoute : Screens(route = "Register")
object ScreenHomeRoute : Screens(route = "Home")
object ScreenBRoute : Screens(route = "B")
object ScreenARoute : Screens(route = "A")
object AuthRoute : Screens(route = "Auth")
object AppRoute : Screens(route = "App")
}
what's its purpose or advantage, or use cases ??

techkid
Автор

can we add fragment and composables inside single navigation graph

AnanthAvinash
Автор

How can we go back to LoginSreen from Either HomeScreen or ScreenA [suppose we want to implement logout]

ashishkamat
Автор

Mohsen Hocam ben uygulamayı yaptım, sorun görünmüyor ama emulatörde göremiyorum.Emulatörde boş sayfa var.Program hata da vermiyor.Emulatorü kaldırıp yeniden yükledim, programı kapatıp açtım olmadı.Ne yapmam gerekiyor.
Teacher Mohsen, I made the application, the problem does not appear, but I cannot see it in the emulator. There is a blank page in the emulator. The program does not give any errors. I uninstalled the emulator and reinstalled it, closed and opened the program, but it did not work. What should I do?

insanotu
Автор

Hello how to hide bottom app bar while navigating inside screens

prithvirajdesigner