Skip to content

Android-practice/Shopping-List-app

Repository files navigation

🛒 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 */
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages