yubioath-flutter/lib/app/views/keys.dart

54 lines
2.2 KiB
Dart
Raw Normal View History

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.
*/
import 'package:flutter/material.dart';
2022-10-03 16:34:06 +03:00
// global keys
final scaffoldGlobalKey = GlobalKey<ScaffoldState>();
const _prefix = 'app.keys';
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');
const oathAppDrawer = Key('$_prefix.drawer.oath');
const u2fAppDrawer = Key('$_prefix.drawer.fido.webauthn');
const fidoPasskeysAppDrawer = Key('$_prefix.drawer.fido.passkeys');
const fidoFingerprintsAppDrawer = Key('$_prefix.drawer.fido.fingerprints');
const otpAppDrawer = Key('$_prefix.drawer.otp');
const pivAppDrawer = Key('$_prefix.drawer.piv');
const hsmauthAppDrawer = Key('$_prefix.drawer.hsmauth');
const openpgpAppDrawer = Key('$_prefix.drawer.openpgp');
// settings page
const settingDrawerIcon = Key('$_prefix.settings_drawer_icon');
const helpDrawerIcon = Key('$_prefix.setting_drawer_icon');
const themeModeSetting = Key('$_prefix.settings.theme_mode');
Key themeModeOption(ThemeMode mode) => Key('$_prefix.theme_mode.${mode.name}');
const tosButton = Key('$_prefix.tos_button');
const privacyButton = Key('$_prefix.privacy_button');
const licensesButton = Key('$_prefix.licenses_button');
const feedbackButton = Key('$_prefix.feedback_button');
const helpButton = Key('$_prefix.help_button');
const diagnosticsChip = Key('$_prefix.diagnostics_chip');
const logChip = Key('$_prefix.log_chip');
const screenshotChip = Key('$_prefix.screenshot_chip');
2023-07-03 12:27:25 +03:00
// misc buttons
const closeButton = Key('$_prefix.close_button');