mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-19 16:21:36 +03:00
19 lines
653 B
Dart
Executable File
19 lines
653 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
const _prefix = 'android.keys';
|
|
|
|
const betaDialogView = Key('$_prefix.beta_dialog');
|
|
|
|
const nfcTapSetting = Key('$_prefix.nfc_tap');
|
|
const nfcKeyboardLayoutSetting = Key('$_prefix.nfc_keyboard_layout');
|
|
const nfcBypassTouchSetting = Key('$_prefix.nfc_bypass_touch');
|
|
|
|
const okButton = Key('$_prefix.ok');
|
|
const manualEntryButton = Key('$_prefix.manual_entry');
|
|
|
|
const launchTapAction = Key('$_prefix.tap_action_launch');
|
|
const copyTapAction = Key('$_prefix.tap_action_copy');
|
|
const bothTapAction = Key('$_prefix.tap_action_both');
|
|
|
|
Key keyboardLayoutOption(String name) => Key('$_prefix.keyboard_layout.$name');
|