Simple json file-based storage for flutter
Add dependency to pubspec.yaml
dependencies:
...
localstorage: ^3.0.6
Run in your terminal
flutter packages get
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();
}
},
);
}
}
V3 doesn't add .json
extension to a storage filename, so you need to do this on your own if you need a "migration".
If you were using v2 with code like below:
final storage = new LocalStorage('my_data');
v3 equivalent:
final storage = new LocalStorage('my_data.json')
cd ~/flutter_localstorage/test
flutter packages get
flutter drive --target=lib/main.dart
MIT