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