Jetpack Compose Android को आधुनिक declarative UI toolkit हो — XML layouts को सट्टा composable Kotlin functions संग UIs निर्माण गर्दै। यो नयाँ Android UI को लागि Google को सिफारिस गरिएको दृष्टिकोण हो, जसले reactive, संक्षिप्त, र अधिक उत्पादनशील तरिका प्रदान गर्दछ।
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)
