Deimplement Authentication
To deimplement the authentication the following classes need to be deleted or modified.
Delete
class AuthenticationRepositoryclass AppleSignInButtonclass GoogleSignInButtonclass ProfilePageclass PersonalData1class SignInPage class SignUpPageclass ResetpasswordpopupModify
class 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