Component - LazyRow for horizontal lists
The LazyRow is a UI component in Android Jetpack Compose that shows a horizontal scrolling list. It only creates the visible items on screen, which helps the app run smoothly even with many items.
The LazyRow is a UI component in Android Jetpack Compose that shows a horizontal scrolling list. It only creates the visible items on screen, which helps the app run smoothly even with many items.
LazyRow ├── Item 1 (Text) ├── Item 2 (Text) ├── Item 3 (Text) └── ...