Comhpháirteanna Ailtireachta Android (cuid de Jetpack) iad leabharlanna a chabhraíonn le feidhmchlár cobhsaí, inchothromaithe a thógáil — lena n-áirítear ViewModel (stát atá ar an eolas faoi shaolré), LiveData/StateFlow (sonraí infhéachánacha), agus Room (astarraingt bunachar sonraí). Tacaíonn siad le patrúin ailtireachta a bhfuil an tAcht á bhfoilsiú.
ViewModel — sealbhóir stáit ar an eolas faoi shaolré
VIEWMODEL holds UI-related state and logic, SURVIVING configuration changes:
→ state stored in a ViewModel SURVIVES screen rotation (the activity recreates, but the
ViewModel persists) → solves the lost-state-on-rotation problem
→ separates UI logic from the Activity/Fragment (the View just observes/displays)
