Last updated:
0 purchases
plain cache
plain_cache #
Persistent cache library for Dart(Flutter for iOS and Android).
Installing #
With Flutter:
flutter pub add plain_cache
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
plain_cache: ^1.0.3
copied to clipboard
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Usage #
Enable plain cache #
import 'package:plain_cache/plain_cache.dart';
void main() {
// Enable Plain Cache
PlainCache.enable();
runApp(MyApp());
}
copied to clipboard
simple usage example: #
Save to persistent cache / 保存数据到持久性缓存
storage.setValue('newValue', forKey: 'MyKey');
copied to clipboard
Read from persistent cache / 从持久性缓存中读取数据
final boolValue = storage.getBool(forKey: 'MyKey');
final doubleValue = storage.getDouble(forKey: 'MyKey');
final intValue = storage.getInt(forKey: 'MyKey');
final listValue = storage.getList(forKey: 'MyKey');
final mapValue = storage.getMap(forKey: 'MyKey');
final stringValue = storage.getString(forKey: 'MyKey');
copied to clipboard
Remove from persistent cache / 从持久性缓存中删除数据
storage.remove(forKey: 'MyKey');
copied to clipboard
License / 许可证 #
plain_cache is released under the MIT license. See LICENSE for details.
plain_cache 是在 MIT 许可下发布的,有关详情请查看该许可证。
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.