Creating Users

Learn Firebase Authentication setup and management using Flutter and GetX state management.

Setting up Firebase Authentication will be the first step in creating users for our app. We must activate the auth package and set email as the default method of authentication in the Firebase console. This allows the users to register and log in using their email address.

Press + to interact
Determine who gets access to your app
Determine who gets access to your app

Setting up email authentication

A visual walkthrough of this setup procedure is provided in the ensuing slides:

Press + to interact
Select all products
1 / 4
Select all products

Creating an auth controller

We’ll make use of GetXController to control user authentication within our application. The user’s login status will be checked by this controller, which will also direct them to the appropriate screen.

Press + to interact
class GetAuth extends GetxController {
static GetAuth instance = Get.find();
Rxn<User> fbUser = Rxn<User>();
FirebaseAuth auth = FirebaseAuth.instance;
@override
void onReady() {
super.onReady();
fbUser = Rxn<User>(auth.currentUser);
fbUser.bindStream(auth.userChanges());
ever(fbUser, _initialScreen);
}
  • Line 1: We make an instance that can be accessed using Get.find(), since it must be accessible throughout the app.

  • Lines 5–8: We start initializing our variables after we set them ...