• How to navigate in Android & Kotlin

    How to navigate in Android & Kotlin

    Navigation comes up frequently in any standard mobile application. In the android ecosystem, navigation is done with the concept of intents. Intent will navigate from one activity to the next. We can also attach extras to the intent to carry information between activities. In the above code snippet, a new intent is created using the
    Read More…