Skip to content

Latest commit

 

History

History
61 lines (45 loc) · 1.43 KB

README.md

File metadata and controls

61 lines (45 loc) · 1.43 KB

Localstorage

Simple json file-based storage for flutter

GitHub stars Twitter Follow

Installation

Add dependency to pubspec.yaml

dependencies:
  ...
  localstorage: ^2.0.0

Run in your terminal

flutter packages get

Example

class SomeWidget extends StatelessWidget {
  final LocalStorage storage = new LocalStorage('some_key');

  @override
  Widget build(BuildContext context) {
    return FutureBuilder(
      future: storage.ready,
      builder: (BuildContext context, snapshot) {
        if (snapshot.data == true) {
          Map<String, dynamic> data = storage.getItem('key');

          return SomeDataView(data: data);
        } else {
          return SomeLoadingStateWidget();
        }
      },
    );
  }
}

Integration tests

cd ~/flutter_localstorage/test
flutter packages get
flutter drive --target=lib/main.dart

License

MIT

GitHub stars Twitter Follow