invoice/lib/utils/keys.dart

22 lines
772 B
Dart

class AppKeys {
static const String openAppDrawer = 'Open navigation menu';
static const String dashboardScreen = 'DashboardScreen';
static const String productScreen = 'ProductScreen';
static const String productDrawer = 'productDrawer';
}
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';
}
class ProductKeys {
static const String fab = 'productFab';
static const String productKey = 'productKey';
static const String notes = 'productNotes';
static const String cost = 'productCost';
}