Skip to content

Latest commit

 

History

History
172 lines (130 loc) · 5.83 KB

README.md

File metadata and controls

172 lines (130 loc) · 5.83 KB

flutter_app_preferences

Package Publisher MIT License LeanCode Style

flutter_app_preferences manages shared preferences in a type-safe way and allows you to receive notifications when one of them changes. Each Preference<T> extends ValueNotifier<T> to maximize compatibility with existing solutions and provide seamless experience when using in Flutter.

Status Comments
flutter_app_preferences - Tests (stable) Current stable Flutter version
flutter_app_preferences - Tests (beta) Current beta Flutter version
flutter_app_preferences - Tests (3.24.0) The oldest supported Flutter version

Getting started

  1. Add this package to your dependencies.
dependencies:
  flutter_app_preferences: latest_version
  1. Get the dependencies.
flutter pub get

Usage

  1. Create a class with your preferences:
import 'package:flutter_app_preferences/flutter_app_preferences.dart';

// A class that holds the preferences.
class AppPreferences extends BaseAppPreferences {
  // An example that stores a boolean value.
  final highContrast = Preference('high-contrast', true);

  // An example that stores an enum.
  final fontSize = Preference(
    'font-size',
    FontSize.medium,
    values: FontSize.values,
  );

  // An example that stores a custom object.
  final currentUser = Preference(
    'current-user',
    User.initialUser,
    fromJson: User.fromJson,
    toJson: (user) => user.toJson(),
  );

  // Provide a list of all the app preferences to ensure that the `AppPreferences` instance can notify its listeners.
  @override
  List<Preference<Object?>> get props => [
        highContrast,
        fontSize,
        currentUser,
      ];
}
// Sample enum.
enum FontSize {
  small,
  medium,
  large,
}
// Sample custom object.
class User {
  const User({required this.name});

  factory User.fromJson(Map<String, Object?> json) =>
      User(name: json['name']! as String);

  Map<String, Object?> toJson() => {'name': name};

  static const initialUser = User(name: '');

  final String name;
}
  1. Initialize an instance of AppPreferences:
Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();

  final prefs = AppPreferences();
  await prefs.initialize();

  runApp(const MaterialApp());
}
  1. Provide and use it everywhere in your app:
  • using provider
// Provide
runApp(
  ChangeNotifierProvider.value(
    value: prefs,
    child: const MaterialApp(),
  ),
);
// Read all
final prefs = context.watch<AppPreferences>();

// Read single
final fontSize = context.select<AppPreferences, FontSize>(
  (prefs) => prefs.fontSize.value,
);
  • using a global instance
// Declare
class AppPreferences extends BaseAppPreferences {
  static final i = AppPreferences();
}

// Initialize
Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await AppPreferences.i.initialize();

  runApp(const MaterialApp());
}
// Write
AppPreferences.i.highContrast.value = true;

// Read
print(AppPreferences.i.highContrast.value);

// Read and react to changes
return ListenableBuilder(
  listenable: AppPreferences.i.highContrast,
  builder: (context, _) => Text(
    'High contrast? ${AppPreferences.i.highContrast.value}',
  ),
);

Additional information

  • BaseAppPreferences extends ChangeNotifier and notifies its listeners when any Preference changes.
  • Preference<T> extends ValueNotifier<T> and notifies its listeners when its value changes.
  • You have to call initialize on app preferences before accessing any Preference.
  • Preferences are backed by SharedPreferencesWithCache which means that if you currently use SharedPreferences.getInstance() in your project and you want to migrate to this package you have to specify your keys with flutter. prefixes and, in case of Android, migrate them manually. For more information see the official documentation.
  • This package requires at least Flutter 3.24 to work.
  • If there are any issues feel free to go to GitHub Issues and report a bug.

Maintainers