27 lines
920 B
Dart
27 lines
920 B
Dart
import 'package:bot_toast/bot_toast.dart';
|
|
import 'package:fluffychat/components/dialogs/simple_dialogs.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
import 'famedlysdk_store.dart';
|
|
|
|
abstract class SentryController {
|
|
static Future<void> toggleSentryAction(BuildContext context) async {
|
|
final enableSentry = await SimpleDialogs(context).askConfirmation(
|
|
titleText: L10n.of(context).sendBugReports,
|
|
contentText: L10n.of(context).sentryInfo,
|
|
confirmText: L10n.of(context).ok,
|
|
cancelText: L10n.of(context).no,
|
|
);
|
|
final storage = await getLocalStorage();
|
|
await storage.setItem('sentry', enableSentry);
|
|
BotToast.showText(text: L10n.of(context).changesHaveBeenSaved);
|
|
return;
|
|
}
|
|
|
|
static Future<bool> getSentryStatus() async {
|
|
final storage = await getLocalStorage();
|
|
return storage.getItem('sentry') as bool;
|
|
}
|
|
}
|