Files
linkding-ios/lib/providers/shared_preferences_provider.dart
Juan Gilsanz Polo e21546693a Theme configuration
2024-02-23 01:26:22 +01:00

10 lines
292 B
Dart

import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:shared_preferences/shared_preferences.dart';
part 'shared_preferences_provider.g.dart';
@Riverpod(keepAlive: true)
SharedPreferences sharedPreferences(SharedPreferencesRef ref) {
throw UnimplementedError();
}