Filters

Hide filters
Platform
Content Type
Difficulty

All Tutorials · 14 Results

Contained in: Navigation in Jetpack Compose Jetpack Compose
Android & Kotlin
Navigation in Jetpack Compose
This module covers essential navigation concepts and techniques in Jetpack Compose. You will create a multiscreen movie booking app, exploring the Navigation Component, passing arguments between screens, and sharing data with external apps. The course progresses to advanced topics like implementing deep links and setting up a bottom navigation…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Use Navigation Arguments

…navigation clunky and unhelpful. Navigation arguments help share and pass data from one part/screen of the app to another while navigating. Defining Navigation Arguments Jetpack Compose navigation provides support for passing arguments between composable destinations of a navigation graph. To do so, you must define argument placeholders in the destination…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Navigation Component

This demo walks through a working implementation of navigating between screens in your Jetpack Compose application…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Navigation Component

Before getting started, note that you need to add the following dependency in your module-specific build.gradle.kts file to use the navigation component with Jetpack Compose apps: dependencies { val navigationVersion = "2.7.7" implementation("androidx.navigation:navigation-compose:$navigationVersion") } Now, briefly look at the key concepts of navigation that you’ll be diving…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Use Navigation Arguments

…using arguments while navigating between different screens/parts of an application and how to implement navigation with arguments between composable destinations while using the Jetpack Compose navigation component…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Navigation Component

Welcome to the second module: “Navigation with Jetpack Compose”. In this first lesson, you’ll learn about the navigation component and key concepts you can use to set up navigation in your app. The lesson will cover the following navigation concepts: — Controller — Host — Graph The navigation component, part…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Deep Linking

…this fourth lesson, you’ll learn how to support deep links using the Navigation Component in your Jetpack Compose app. This lesson will cover: — The purpose of deep links. — How to set up deep links in your…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Deep Linking

…this lesson, you learned about the importance of using deep links and how to implement them in your Jetpack Compose app using the navigation component. Deep links are a powerful way to navigate across websites and apps, improve user experience, streamline the user journey, increase user engagement, and boost conversions…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Bottom Nav Bar Navigation

Learn about the bottom nav bar briefly and how to use it along with the navigation component in your Jetpack Compose
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Navigation Component

Learn how to use navigation component and its key concepts to set up navigation in Jetpack Compose Android application…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Navigation Component

…this lesson, you learned how to successfully navigate between screens/parts in your app using the Jetpack Compose navigation component. You learned and implemented its key concepts: navigation host, graph and controller. Effective navigation lies at the core of any well-designed app. Most modern apps have multiple screens/parts, and guiding…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Use Navigation Arguments

Learn how to use navigation arguments and pass data while navigating between screens in your Jetpack Compose
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Use Navigation Arguments

…learn about navigation with arguments. This lesson will cover: — The purpose of navigation arguments. — How to navigate with arguments. Navigation arguments in a Jetpack Compose application let you send data between screens, making your app’s flows more dynamic and flexible…
Android & Kotlin

Lesson in Navigation in Jetpack Compose

Deep Linking

Learn about the purpose of deep links and how to setup and use them in your Jetpack Compose