├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── shared_preferences_settings.dart └── src │ ├── settings.dart │ └── settings_screen.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/README.md -------------------------------------------------------------------------------- /lib/shared_preferences_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/lib/shared_preferences_settings.dart -------------------------------------------------------------------------------- /lib/src/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/lib/src/settings.dart -------------------------------------------------------------------------------- /lib/src/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/lib/src/settings_screen.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnabasbartha/shared_preferences_settings/HEAD/pubspec.yaml --------------------------------------------------------------------------------