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.
Setting up email authentication
A visual walkthrough of this setup procedure is provided in the ensuing slides:
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.
class GetAuth extends GetxController {static GetAuth instance = Get.find();Rxn<User> fbUser = Rxn<User>();FirebaseAuth auth = FirebaseAuth.instance;@overridevoid 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 ...