Jetpack Compose એ Android નો આધુનિક declarative UI toolkit છે — XML layouts ની જગ્યાએ composable Kotlin functions સાથે UIs બનાવવું. તે નવા Android UI માટે Google નો અનુશંસિત અભિગમ છે, જે interfaces બનાવવાની એક reactive, concise અને વધુ productive રીત પ્રદાન કરે છે.
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)
