Component - LazyColumn for lists
The LazyColumn is a scrollable vertical list in Android using Jetpack Compose. It only creates the visible items on screen, which helps apps run smoothly even with long lists.
The LazyColumn is a scrollable vertical list in Android using Jetpack Compose. It only creates the visible items on screen, which helps apps run smoothly even with long lists.
LazyColumn ├── Item 0: Text ├── Item 1: Text ├── Item 2: Text ├── ... └── Item N: Text