Skip to content
#

android-jetpack-compose

Here are 55 public repositories matching this topic...

Android Jetpack Compose provides the TextField component, which is a flexible and customizable text input field for building user interfaces in Android apps. The TextField in Jetpack Compose offers a more declarative and composable approach compared to traditional Android EditText views.

  • Updated Jul 5, 2023
  • Kotlin

In Android Jetpack Compose, state management is an important aspect of building reactive UIs. The RememberSaveable function is a part of the Jetpack Compose state APIs that allows you to save and restore the state of a composable function across configuration changes, such as screen rotations.

  • Updated Jul 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

In Android Jetpack Compose, the equivalent of ListView for creating a scrollable column is the Column composable. While Column alone doesn't have built-in support for efficiently handling large datasets or dynamic content, you can combine it with other components to achieve similar functionality.

  • Updated Jul 6, 2023
  • Kotlin

In Android Jetpack Compose, the equivalent of RecyclerView for creating a scrollable column with efficient item handling and recycling is the LazyColumn composable. It provides similar functionality to RecyclerView, such as handling large datasets, recycling and reusing item views, and efficiently rendering only the visible items on the screen.

  • Updated Jul 6, 2023
  • Kotlin

Improve this page

Add a description, image, and links to the android-jetpack-compose 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-jetpack-compose topic, visit your repo's landing page and select "manage topics."

Learn more