orange 1.0.0 orange: ^1.0.0 copied to clipboard
fast and esay modern key-value store
Orange #
Features #
- ✨ Super Fast Speed 100 x faster than SharedPreference
- 🦄 Super Easy: No initialization required, same api as SharedPreference
- 🚀 All Environment Work: working on Android, iOS, Web, Mac, Windows, Linux even cli.
- 🌐 No Build Runner: do not waste time on build_runner
Installation #
flutter pub add orange
Usage #
await Orange().setString('orange', 'is delicious! 🍊');
String orange = await Orange().getString('orange');
print(orange); // is delicious! 🍊
await Orange().remove('orange');
you got all usage of Orange now! 🎉