mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-25 11:12:10 +03:00
25 lines
971 B
Dart
Executable File
25 lines
971 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
const _prefix = 'oath.keys';
|
|
|
|
const setOrManagePasswordAction = Key('$_prefix.set_or_manage_oath_password');
|
|
const addAccountAction = Key('$_prefix.add_account');
|
|
const resetAction = Key('$_prefix.reset');
|
|
|
|
const noAccountsView = Key('$_prefix.no_accounts');
|
|
|
|
const searchAccountsField = Key('$_prefix.search_accounts');
|
|
const passwordField = Key('$_prefix.password');
|
|
const currentPasswordField = Key('$_prefix.current_password');
|
|
const newPasswordField = Key('$_prefix.new_password');
|
|
const confirmPasswordField = Key('$_prefix.confirm_password');
|
|
const issuerField = Key('$_prefix.issuer');
|
|
const nameField = Key('$_prefix.name');
|
|
const secretField = Key('$_prefix.secret');
|
|
|
|
const unlockButton = Key('$_prefix.unlock');
|
|
const saveButton = Key('$_prefix.save');
|
|
const deleteButton = Key('$_prefix.delete');
|
|
const savePasswordButton = Key('$_prefix.save_password');
|
|
const removePasswordButton = Key('$_prefix.remove_password');
|