Create deep link via Navigation Component in Kotlin

On Android, a deep link is a link that takes you directly to a specific destination within an app. The navigation component lets you create two different types of deep links: explicit (ikˈsplisit )and implicit(imˈplisit). in this article, I will explain the implicit deep link. Let me give you an example of why we need Deeplink : Sometimes you want to make it easy for the user to get to a specific part inside the flow of your application without having to several clicks from the start screen to get there. I assume you have an online shop application, and a user wants to see a product with a link. If you don’t use the deep links, the user should navigate step by step from your shop’s main page to the product they want to see. But with the deep link, a user can directly open and see a product. In short, a deep link allows the user to click from those other locations and get to those deeper parts of your app. Github Source :
Back to Top