fix: login screen theme

This commit is contained in:
Rongjian Zhang
2020-01-14 18:27:43 +08:00
parent baf3e43045
commit 0b334f341e
3 changed files with 11 additions and 23 deletions

View File

@@ -31,7 +31,6 @@ class AuthModel with ChangeNotifier {
bool loading = false;
List<Account> get accounts => _accounts;
bool get ready => _accounts != null;
Account get activeAccount {
if (activeAccountIndex == null || _accounts == null) return null;
return _accounts[activeAccountIndex];