flutter-working-with-databases
Installation
SKILL.md
Architecting the Data Layer
Contents
- Core Architecture
- Services Implementation
- Repository Implementation
- Caching Strategies
- Workflows
- Examples
Core Architecture
Construct the data layer as the Single Source of Truth (SSOT) for all application data. In an MVVM architecture, the data layer represents the Model. Never update application data outside of this layer.
Separate the data layer into two distinct components: Repositories and Services.