sqflite_state_repository 1.0.3 copy "sqflite_state_repository: ^1.0.3" to clipboard
sqflite_state_repository: ^1.0.3 copied to clipboard

A specialization of state_repository that creates a sqflite repository that encapsulates the crud operations of a table.

example/lib/main.dart

import 'package:flutter/material.dart';
import './screens/note_list.dart';


void main() {
	runApp(MyApp());
}

class MyApp extends StatelessWidget {

	@override
  Widget build(BuildContext context) {

    return MaterialApp(
	    title: 'NoteKeeper',
	    debugShowCheckedModeBanner: false,
	    theme: ThemeData(
		    primarySwatch: Colors.deepPurple
	    ),
	    home: NoteList(),
    );
  }
}
1
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A specialization of state_repository that creates a sqflite repository that encapsulates the crud operations of a table.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path, sqflite, state_repository

More

Packages that depend on sqflite_state_repository