Jetpack Compose என்பது Android-ன் நவீன declarative UI toolkit — XML layouts-க்கு பதிலாக composable Kotlin செயல்பாடுகளுடன் UIs-ஐ உருவாக்குதல். இது புதிய Android UI-க்கான Google-ன் பரிந்துரைக்கப்பட்ட முறையாக உள்ளது, இது ஒரு reactive, சுருக்கமான, மற்றும் interface-களை உருவாக்குவதற்கான மிகவும் உற்பத்தिशील வழியை வழங்குகிறது.
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)
