flutter_robusta_hive_auth

Last updated:

0 purchases

flutter_robusta_hive_auth Image
flutter_robusta_hive_auth Images
Add to Cart

Description:

flutter robusta hive auth

Flutter Robusta Hive Auth #
Providing persistent and secure storage for storing auth credentials.
Installation #
Install this package via pub command:
flutter pub add flutter_robusta_hive_auth
copied to clipboard
Usages #
import 'package:flutter_robusta/flutter_robusta.dart';
import 'package:flutter_robusta_auth/flutter_robusta_auth.dart';
import 'package:flutter_robusta_hive/flutter_robusta_hive.dart';
import 'package:flutter_robusta_hive_auth/flutter_robusta_hive_auth.dart';

final runner = Runner(
extensions: [
FlutterHiveExtension(),
FlutterHiveAuthExtension(),
FlutterAuthExtension(
identityProvider: (credentials, provider) => throw UnimplementedError(),
credentialsStorageFactory: (c) => c.read(credentialsHiveStorageProvider),
)
],
);

Future<void> main() => runner.run();
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.