mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
Move "About Comunic" dialog
This commit is contained in:
parent
11c25ea271
commit
e00f452b98
@ -1,5 +1,6 @@
|
||||
import 'package:comunic/helpers/preferences_helper.dart';
|
||||
import 'package:comunic/utils/intl_utils.dart';
|
||||
import 'package:comunic/utils/ui_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// Application settings route
|
||||
@ -61,6 +62,10 @@ class __AppSettingsBodyState extends State<_AppSettingsBody> {
|
||||
description:
|
||||
tr("You will need to restart the application to apply changes"),
|
||||
),
|
||||
ListTile(
|
||||
title: Text(tr("About Comunic")),
|
||||
onTap: () => showAboutAppDialog(context),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
@ -126,11 +126,6 @@ class _MainRouteState extends MainController {
|
||||
_openAccountsSettings();
|
||||
break;
|
||||
|
||||
/// Show about dialog
|
||||
case BarCallbackActions.OPEN_ABOUT_DIALOG:
|
||||
showAboutAppDialog(context);
|
||||
break;
|
||||
|
||||
/// Logout user
|
||||
case BarCallbackActions.ACTION_LOGOUT:
|
||||
_logoutRequested();
|
||||
|
@ -28,7 +28,6 @@ enum BarCallbackActions {
|
||||
OPEN_ACCOUNT_SETTINGS,
|
||||
OPEN_APP_SETTINGS,
|
||||
OPEN_USER_FRIENDS_LIST,
|
||||
OPEN_ABOUT_DIALOG,
|
||||
OPEN_CONVERSATION,
|
||||
NONE,
|
||||
ACTION_LOGOUT
|
||||
@ -103,8 +102,6 @@ final _menuActionsItem = <_ActionMenuItem>[
|
||||
action: BarCallbackActions.OPEN_ACCOUNT_SETTINGS),
|
||||
_ActionMenuItem(
|
||||
label: tr("App settings"), action: BarCallbackActions.OPEN_APP_SETTINGS),
|
||||
_ActionMenuItem(
|
||||
label: tr("About Comunic"), action: BarCallbackActions.OPEN_ABOUT_DIALOG),
|
||||
_ActionMenuItem(
|
||||
label: tr("Sign out"), action: BarCallbackActions.ACTION_LOGOUT),
|
||||
];
|
||||
@ -179,8 +176,7 @@ class _ComunicAppBarState extends SafeState<ComunicAppBar> {
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: List.generate(
|
||||
_menuItems.length,
|
||||
(i) =>
|
||||
_MenuItemWidget(
|
||||
(i) => _MenuItemWidget(
|
||||
item: _menuItems[i],
|
||||
onTap: widget.onTap,
|
||||
isSelected: _menuItems[i].action == widget.selectedAction,
|
||||
|
Loading…
Reference in New Issue
Block a user