Skip to content
#

android-kotlin

Here are 364 public repositories matching this topic...

Android View Binding is a feature introduced by Google in Android Studio 3.6 that simplifies the process of accessing views in your Android app's layout files. It generates a binding class for each XML layout file, allowing you to access and manipulate views directly using the generated binding class.

  • Updated Jun 25, 2023
  • Kotlin

Structured concurrency is a programming paradigm that emphasizes the use of scopes to manage the lifecycle of asynchronous tasks. When you launch a coroutine within a scope, it becomes a child of that scope, and when the scope is cancelled or completes, all of its child coroutines are cancelled as well.

  • Updated May 14, 2023
  • Kotlin

Jetpack Compose provides a declarative way to define UI components and encourages the use of immutable state. You can manage state within a composable function using the remember and mutableStateOf functions. These functions allow you to create and update state variables that automatically trigger recomposition when their values change.

  • Updated Jul 9, 2023
  • Kotlin

Improve this page

Add a description, image, and links to the android-kotlin topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the android-kotlin topic, visit your repo's landing page and select "manage topics."

Learn more