databases▌
3 indexed skills · max 10 per page
flutter-databases
flutter/skills · Productivity
MVVM-compliant data layer for Flutter with Repository pattern, stateless Services, and intelligent local caching strategies. \n \n Guides selection of persistence technology (shared_preferences, sqflite, drift, hive_ce, isar_community, or file I/O) based on data type, size, and relational complexity \n Implements Repository as single source of truth, isolating DatabaseService and ApiClient as private stateless dependencies \n Provides complete code examples for domain models, SQLite operations,
databases
mrgoonie/claudekit-skills · Productivity
Unified guide for working with MongoDB (document-oriented) and PostgreSQL (relational) databases. Choose the right database for your use case and master both systems.
flutter-working-with-databases
flutter/skills · Productivity
SQLite and offline-first data layer architecture for Flutter apps with structured local persistence. \n \n Separates data layer into stateless Services (raw data wrappers) and business-logic Repositories (single source of truth per domain entity) \n Implements offline-first synchronization: reads yield cached local data immediately then fetch remote updates; writes save locally first, then attempt API sync with background queue fallback \n Covers SQLite setup with safe parameterized queries, Dom