fix: Better error in discover

This commit is contained in:
Christian Pauly 2021-02-06 20:41:24 +01:00
parent 54862b754c
commit 0c1864c828
2 changed files with 23 additions and 2 deletions

View File

@ -17,7 +17,7 @@ extension LocalizedExceptionExtension on Object {
if (this is MatrixConnectionException) {
L10n.of(context).noConnectionToTheServer;
}
Logs().d('Something went wrong: ', this);
Logs().w('Something went wrong: ', this);
return L10n.of(context).oopsSomethingWentWrong;
}
}

View File

@ -9,6 +9,7 @@ import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:fluffychat/components/matrix.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import '../../utils/localized_exception_extension.dart';
class Discover extends StatefulWidget {
final String alias;
@ -166,7 +167,27 @@ class _DiscoverState extends State<Discover> {
builder: (BuildContext context,
AsyncSnapshot<PublicRoomsResponse> snapshot) {
if (snapshot.hasError) {
return Center(child: Text(snapshot.error.toString()));
return Column(
mainAxisSize: MainAxisSize.min,
children: [
SizedBox(height: 32),
Icon(
Icons.error_outlined,
size: 80,
color: Colors.grey,
),
Center(
child: Text(
snapshot.error.toLocalizedString(context),
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.grey,
fontSize: 16,
),
),
),
],
);
}
if (snapshot.connectionState != ConnectionState.done) {
return Center(child: CircularProgressIndicator());