rdev_riverpod_firebase_auth 0.0.2 rdev_riverpod_firebase_auth: ^0.0.2 copied to clipboard
This package provides a simple way to use Firebase Auth with Riverpod.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add rdev_riverpod_firebase_auth
With Flutter:
$ flutter pub add rdev_riverpod_firebase_auth
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
rdev_riverpod_firebase_auth: ^0.0.2
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:rdev_riverpod_firebase_auth/application/auth_data_service.dart';
import 'package:rdev_riverpod_firebase_auth/application/auth_service.dart';
import 'package:rdev_riverpod_firebase_auth/data/auth_repository.dart';
import 'package:rdev_riverpod_firebase_auth/domain/auth_additional_user_info_vo.dart';
import 'package:rdev_riverpod_firebase_auth/domain/auth_credential_vo.dart';
import 'package:rdev_riverpod_firebase_auth/domain/auth_idtoken_result_vo.dart';
import 'package:rdev_riverpod_firebase_auth/domain/auth_user_credential_vo.dart';
import 'package:rdev_riverpod_firebase_auth/domain/auth_user_vo.dart';