* drafting toolbar with practice * moved some code around * turning overlay message content into text buttons for selection, updated toolbar buttons progress bar * activities displaying and forwarding toolbar * experimenting with using choice value rather than index for logic * reimplementation of wordnet results and translation for individual words * cache and timer * mostly done with activities in toolbar flow --------- Co-authored-by: ggurdin <ggurdin@gmail.com> Co-authored-by: choreo development <williamjordan-cooley@Williams-MacBook-Pro-3.local>
30 lines
1 KiB
Dart
30 lines
1 KiB
Dart
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
|
|
|
void pLogoutAction(BuildContext context, {bool? isDestructiveAction}) async {
|
|
if (await showOkCancelAlertDialog(
|
|
useRootNavigator: false,
|
|
context: context,
|
|
title: L10n.of(context)!.areYouSureYouWantToLogout,
|
|
message: L10n.of(context)!.noBackupWarning,
|
|
isDestructiveAction: isDestructiveAction ?? false,
|
|
okLabel: L10n.of(context)!.logout,
|
|
cancelLabel: L10n.of(context)!.cancel,
|
|
) ==
|
|
OkCancelResult.cancel) {
|
|
return;
|
|
}
|
|
final matrix = Matrix.of(context);
|
|
|
|
// before wiping out locally cached construct data, save it to the server
|
|
await MatrixState.pangeaController.myAnalytics
|
|
.sendLocalAnalyticsToAnalyticsRoom();
|
|
|
|
await showFutureLoadingDialog(
|
|
context: context,
|
|
future: () => matrix.client.logout(),
|
|
);
|
|
}
|