Merge branch 'pangeachat:main' into 218-improve-interactive-translator
This commit is contained in:
commit
7828f881f7
3 changed files with 15 additions and 3 deletions
|
|
@ -191,7 +191,10 @@ class HomeserverPickerController extends State<HomeserverPicker> {
|
|||
} finally {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
isLoading = isLoggingIn = false;
|
||||
// #Pangea
|
||||
// isLoading = isLoggingIn = false;
|
||||
isLoggingIn = false;
|
||||
// Pangea#
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -70,7 +70,14 @@ class HomeserverPickerView extends StatelessWidget {
|
|||
// Pangea#
|
||||
Expanded(
|
||||
child: controller.isLoading
|
||||
? const Center(child: CircularProgressIndicator.adaptive())
|
||||
// #Pangea
|
||||
// ? const Center(child: CircularProgressIndicator.adaptive())
|
||||
? const Center(
|
||||
child: CircularProgressIndicator(
|
||||
valueColor: AlwaysStoppedAnimation<Color>(Colors.black),
|
||||
),
|
||||
)
|
||||
// Pangea#
|
||||
: ListView(
|
||||
children: [
|
||||
if (errorText != null) ...[
|
||||
|
|
|
|||
|
|
@ -120,7 +120,9 @@ class LoginController extends State<Login> {
|
|||
return setState(() => loading = false);
|
||||
}
|
||||
|
||||
if (mounted) setState(() => loading = false);
|
||||
// #Pangea
|
||||
// if (mounted) setState(() => loading = false);
|
||||
// Pangea#
|
||||
}
|
||||
|
||||
Timer? _coolDown;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue