local_firebase_auth 1.0.0-nullsafety.0 copy "local_firebase_auth: ^1.0.0-nullsafety.0" to clipboard
local_firebase_auth: ^1.0.0-nullsafety.0 copied to clipboard

discontinued
outdated

An experimental dart package that mocks (emulates) the firebase_auth plugin for quick and offline development.

local_firebase_auth #

Pub Github Master Workflow Status Github Language License

An experimental dart package that mocks (emulates) the firebase_auth plugin for quick and offline development.

Intended to be used solely for development. #

Usage #

  1. Depend on the package by adding it to your pubspec.yaml dependencies.
    local_firebase_auth: <latest_version>

  2. Import the library.

import 'package:local_firebase_auth/local_firebase_auth.dart';

When using this package alongside the official firebase plugin, it's advisable to import with a prefix to prevent conflict since it has same class names except LocalFirebaseAuth (ofc 😜). Eg.

import 'package:local_firebase_auth/local_firebase_auth.dart' as localAuth;
  1. Be sure to initialize the package before using. An exception will be raised if the package is not initialized before usage.
LocalFirebaseAuth.initialize('appName');
  1. Use it as you would the official plugin. For instance, you can create a new user as:
final UserCredential result = await LocalFirebaseAuth.instance.createUserWithEmailAndPassword(
    email: email,
    password: pass,
);

final User user = result.user;
print(user.uid);

Supported methods #

Since this is a mock and experimental package, it is in no way meant as a replacement for Firebase but for use quick and offline development use-cases.
The following methods are currently available:

Method Signature Parameters
createUserWithEmailAndPassword Future<UserCredential> String email, String password
signInAnonymously Future<UserCredential> None
signInWithEmailAndPassword Future<UserCredential> String email, String password
signOut Future<void> None

Get Current User #

final User user = LocalFirebaseAuth.instance.currentUser;

Contributing #

This project is fully open-source. Feel free to contribute to this project.

If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a new feature, please send a pull request.

Official Plugins Documentation #

For the full documentation of the official Firebase plugins, please see the documentation available at https://firebase.flutter.dev

License #

This project has been licensed under the MIT License.

MIT License

Copyright (c) [2020] [Akora Ing. DKB]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3
likes
130
pub points
0%
popularity

Publisher

verified publisherakora-ingdkb.me

An experimental dart package that mocks (emulates) the firebase_auth plugin for quick and offline development.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

hive, meta, random_string

More

Packages that depend on local_firebase_auth