Jetpack Compose হল Android এর আধুনিক declarative UI toolkit — XML layouts এর পরিবর্তে composable Kotlin functions দিয়ে UIs তৈরি করা। এটি নতুন Android UI এর জন্য Google এর সুপারিশকৃত পদ্ধতি, যা একটি reactive, concise এবং আরও উত্পাদনশীল উপায়ে interfaces তৈরি করার সুবিধা দেয়।
Compose কী
JETPACK COMPOSE = a declarative UI toolkit (Kotlin code, no XML):
→ describe the UI as COMPOSABLE FUNCTIONS (annotated @Composable)
→ DECLARATIVE + REACTIVE — describe UI for a given state; it updates when state changes
→ Google's RECOMMENDED modern approach (similar philosophy to Flutter, React, SwiftUI)
