24 lines
681 B
Dart
24 lines
681 B
Dart
class AppKeys {
|
|
static const String openAppDrawer = 'Open navigation menu';
|
|
}
|
|
|
|
class AppTooltips {
|
|
static const String save = 'Save';
|
|
static const String back = 'Back';
|
|
}
|
|
|
|
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';
|
|
} |