Added google play testing accounts and testing environment

This commit is contained in:
2023-07-30 21:13:21 +02:00
parent 6548ff360a
commit c6f0dad247
19 changed files with 337 additions and 201 deletions

View File

@ -43,13 +43,13 @@ class AccountData {
await _updateFromStorage();
}
void removeData(BuildContext context) async {
Future<void> removeData(BuildContext context) async {
_populated = Completer();
Provider.of<AccountModel>(context, listen: false).setState(AccountModelState.loggedOut);
SharedPreferences storage = await _storage;
storage.remove(_usernameField);
storage.remove(_passwordField);
await storage.remove(_usernameField);
await storage.remove(_passwordField);
}
Future<void> _updateFromStorage() async {