mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
19 lines
1.0 KiB
Dart
19 lines
1.0 KiB
Dart
class Assets {
|
|
Assets._();
|
|
static const String background = "assets/images/Background.png";
|
|
static const String webBackground = "assets/images/web_Background.svg";
|
|
static const String blackLogo = "assets/images/black-logo.png";
|
|
static const String logo = "assets/images/Logo.svg";
|
|
static const String logoHorizontal = "assets/images/logo_horizontal.png";
|
|
static const String vector = "assets/images/Vector.png";
|
|
static const String loginLogo = "assets/images/login_logo.svg";
|
|
static const String whiteLogo = "assets/images/white-logo.png";
|
|
static const String window = "assets/images/Window.png";
|
|
static const String liftLine = "assets/images/lift_line.png";
|
|
static const String rightLine = "assets/images/right_line.png";
|
|
static const String google = "assets/images/google.svg";
|
|
static const String facebook = "assets/images/facebook.svg";
|
|
static const String invisiblePassword = "assets/images/Password_invisible.svg";
|
|
static const String visiblePassword = "assets/images/Password_visible.svg";
|
|
}
|