2022-10-04 13:12:54 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 Yubico.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-09-12 17:00:08 +03:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2022-10-03 16:34:06 +03:00
|
|
|
// global keys
|
|
|
|
final scaffoldGlobalKey = GlobalKey<ScaffoldState>();
|
|
|
|
|
2022-09-12 17:00:08 +03:00
|
|
|
const _prefix = 'app.keys';
|
2022-09-13 18:13:06 +03:00
|
|
|
const deviceInfoListTile = Key('$_prefix.device_info_list_tile');
|
2022-10-03 16:34:06 +03:00
|
|
|
const noDeviceAvatar = Key('$_prefix.no_device_avatar');
|
2023-01-11 12:04:15 +03:00
|
|
|
const actionsIconButtonKey = Key('$_prefix.actions_icon_button');
|
2022-10-03 16:34:06 +03:00
|
|
|
|
|
|
|
// drawer items
|
|
|
|
const managementAppDrawer = Key('$_prefix.drawer.management');
|
2023-03-03 18:09:40 +03:00
|
|
|
|
|
|
|
// settings page
|
|
|
|
const themeModeSetting = Key('$_prefix.settings.theme_mode');
|
|
|
|
Key themeModeOption(ThemeMode mode) => Key('$_prefix.theme_mode.${mode.name}');
|