A simple shopping list app built with Android Jetpack Compose.
You can easily add, edit, and delete the items you want to manage.
- ➕ Add item
- ✏️ Edit item
- ❌ Delete item
LazyColumn is a part of Jetpack Compose, used for efficiently displaying lists.
If you try to load all items at once, it might slow down the app.
LazyColumn only loads and displays the items currently visible on the screen.
- Loads only the items that fit on the screen
- As the user scrolls, loads more items on the fly
- Optimized for memory and rendering performance
LazyColumn {
items(listOfItems) { item ->
/* code to display each item */
}
}


