custom-plugin-flutter-skill-database

Installation
SKILL.md

custom-plugin-flutter: Database & Storage Skill

Quick Start - Hive Storage

// Define model
(typeId: 0)
class User {
  (0)
  final String id;
  (1)
  final String name;

  User({required this.id, required this.name});
}

// Use Hive
Future<void> main() async {
  await Hive.initFlutter();
Related skills
Installs
4
GitHub Stars
8
First Seen
Mar 19, 2026