40 lines
1.2 KiB
Dart
40 lines
1.2 KiB
Dart
class AppKeys {
|
|
static const String openAppDrawer = 'Open navigation menu';
|
|
static const String dashboardScreen = 'DashboardScreen';
|
|
}
|
|
|
|
class AppTooltips {
|
|
static const String save = 'Save';
|
|
static const String back = 'Back';
|
|
}
|
|
|
|
class LoginKeys {
|
|
static const String email = 'loginEmail';
|
|
static const String password = 'loginPassword';
|
|
static const String url = 'loginUrl';
|
|
static const String loginSelfHost = 'loginSelfHost';
|
|
static const String secret = 'loginSecret';
|
|
static const String oneTimePassword = 'loginOneTimePassword';
|
|
static const String loginButton = 'login';
|
|
}
|
|
|
|
class ProductKeys {
|
|
static const String screen = 'ProductScreen';
|
|
static const String drawer = 'productDrawer';
|
|
static const String fab = 'productFab';
|
|
static const String productKey = 'productKey';
|
|
static const String notes = 'productNotes';
|
|
static const String cost = 'productCost';
|
|
static const String filter = 'productFilter';
|
|
}
|
|
|
|
class ClientKeys {
|
|
static const String screen = 'ClientScreen';
|
|
static const String fab = 'clientFab';
|
|
static const String drawer = 'clientDrawer';
|
|
}
|
|
|
|
class SettingsKeys {
|
|
static const String drawer = 'settingsDrawer';
|
|
}
|