chore: Switch from bottoast to flushbar

This commit is contained in:
Christian Pauly
2020-11-14 08:54:26 +01:00
parent e43e922557
commit e2195935c0
15 changed files with 79 additions and 44 deletions

View File

@ -1,7 +1,7 @@
import 'dart:convert';
import 'dart:io';
import 'package:bot_toast/bot_toast.dart';
import 'package:flushbar/flushbar_helper.dart';
import 'package:famedlysdk/famedlysdk.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:fluffychat/components/matrix.dart';
@ -46,10 +46,10 @@ abstract class FirebaseController {
final storeItem = await matrix.store.getItem(SettingKeys.showNoGoogle);
final configOptionMissing = storeItem == null || storeItem.isEmpty;
if (configOptionMissing || (!configOptionMissing && storeItem == '1')) {
BotToast.showText(
text: L10n.of(context).noGoogleServicesWarning,
await FlushbarHelper.createError(
message: L10n.of(context).noGoogleServicesWarning,
duration: Duration(seconds: 15),
);
).show(context);
if (configOptionMissing) {
await matrix.store.setItem(SettingKeys.showNoGoogle, '0');
}
@ -120,7 +120,8 @@ abstract class FirebaseController {
),
(r) => r.isFirst);
} catch (_) {
BotToast.showText(text: 'Failed to open chat...');
await FlushbarHelper.createError(message: 'Failed to open chat...')
.show(context);
debugPrint(_);
}
};