Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.44 KB

File metadata and controls

48 lines (33 loc) · 1.44 KB

🛒 MyShoppingListApp

A simple shopping list app built with Android Jetpack Compose.
You can easily add, edit, and delete the items you want to manage.


✨ Features

  • ➕ Add item
  • ✏️ Edit item
  • ❌ Delete item

📱 Previews


🧠 New Learning

📜 LazyColumn

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.

✅ Features

  • 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

💡 Example usage

LazyColumn {
    items(listOfItems) { item ->
        /* code to display each item */
    }
}