New store

This commit is contained in:
Christian Pauly 2020-01-26 11:17:54 +00:00
commit 46f7a947f5
19 changed files with 159 additions and 969 deletions

View file

@ -58,7 +58,6 @@ class _SignUpState extends State<SignUp> {
}
try {
print("[Sign Up] Check server...");
setState(() => loading = true);
if (!await matrix.client.checkServer(homeserver)) {
setState(
@ -72,7 +71,6 @@ class _SignUpState extends State<SignUp> {
}
try {
print("[Sign Up] Check if username is available...");
await matrix.client.usernameAvailable(preferredUsername);
} on MatrixException catch (exception) {
setState(() => usernameError = exception.errorMessage);