|
1 | | -# decompose-tutorial |
2 | | -A comprehensive tutorial project showcasing Decompose for reactive UI component architecture in Kotlin Android development |
| 1 | +# Decompose Tutorial |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | +A comprehensive tutorial project showcasing Decompose for reactive UI component architecture in Kotlin Android development. |
| 8 | + |
| 9 | +## 🚀 Overview |
| 10 | + |
| 11 | +Decompose is a powerful Kotlin library for building component-based UIs with clean separation of concerns. This tutorial demonstrates how to create modular, maintainable Android applications using Decompose with Jetpack Compose. |
| 12 | + |
| 13 | +## ✨ Key Features |
| 14 | + |
| 15 | +- **Component-Based Architecture**: Modular UI components with encapsulated logic |
| 16 | +- **State Management**: Reactive state with unidirectional data flow |
| 17 | +- **Type-Safe Navigation**: Navigation between components without Fragments |
| 18 | +- **Back Stack Management**: Support for navigation history |
| 19 | +- **Lifecycle Management**: Clean component lifecycle handling |
| 20 | + |
| 21 | +## 🏗️ Architecture |
| 22 | + |
| 23 | +This project follows a component-based architecture where each screen is a self-contained component: |
| 24 | + |
| 25 | +``` |
| 26 | +App |
| 27 | + ├── Root Component |
| 28 | + │ ├── Todo List Component |
| 29 | + │ │ └── Todo Item Component |
| 30 | + │ └── Todo Detail Component |
| 31 | + └── DI / Infrastructure |
| 32 | +``` |
| 33 | + |
| 34 | +## 📋 Todo App Implementation |
| 35 | + |
| 36 | +This tutorial implements a Todo application with a three-stage workflow: |
| 37 | + |
| 38 | +1. **Todo Stage**: |
| 39 | + - Display: Play button (no checkbox) |
| 40 | + - Action: Clicking play button moves todo to "In Progress" stage |
| 41 | + |
| 42 | +2. **In Progress Stage**: |
| 43 | + - Display: Checkbox |
| 44 | + - Action: Checking the box moves todo to "Done" stage |
| 45 | + |
| 46 | +3. **Done Stage**: |
| 47 | + - Display: Checkbox (checked) |
| 48 | + - Action: Unchecking the box moves todo back to "Todo" stage |
| 49 | + |
| 50 | +## 🛠️ Setup Instructions |
| 51 | + |
| 52 | +1. Clone the repository |
| 53 | +2. Open the project in Android Studio |
| 54 | +3. Build and run the app |
| 55 | + |
| 56 | +## 📚 Technologies |
| 57 | + |
| 58 | +- **Kotlin**: Modern programming language |
| 59 | +- **Jetpack Compose**: UI toolkit |
| 60 | +- **Decompose**: Component architecture |
| 61 | +- **Kotlin Coroutines**: Asynchronous programming |
| 62 | + |
| 63 | +## 👨💻 About the Author |
| 64 | + |
| 65 | +**Abdelraouf Sabri** - Senior Android Developer |
| 66 | + |
| 67 | +- Website: [abd3lraouf.dev](https://abd3lraouf.dev) |
| 68 | +- GitHub: [@abd3lraouf](https://github.com/abd3lraouf) |
| 69 | + |
| 70 | +--- |
| 71 | + |
| 72 | +⭐️ Star this repository if you find it helpful! |
0 commit comments