Deimplement Authentication
Last updated
To deimplement the authentication the following classes need to be deleted or modified.
class AuthenticationRepositoryclass AppleSignInButtonclass GoogleSignInButtonclass ProfilePageclass PersonalData1class SignInPage class SignUpPageclass Resetpasswordpopupclass AuthenticationWrapperremove the WidgetsBinding.instance.addPostFrameCallback() function from the initState() method
replace bool loading = true; with bool loading = false;
class UserDataWrapperremove the WidgetsBinding.instance.addPostFrameCallback() function from the initState() method
remove UserRepository.userDataListener?.cancel(); UserRepository.userDataListener = null; from the dispose() method
replace bool loading = true; with bool loading = false;
Last updated