mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 01:35:23 +00:00
44 lines
1.6 KiB
Dart
44 lines
1.6 KiB
Dart
abstract class ImageManager {
|
|
static const String base = 'assets/images';
|
|
|
|
static const String whiteLogo = '$base/white-logo.png';
|
|
static const String blackLogo = '$base/black-logo.png';
|
|
static const String boxEmpty = '$base/box-empty.jpg';
|
|
static const String automation = '$base/automation.jpg';
|
|
static const String background = '$base/Background.png';
|
|
static const String testDash = '$base/test_dash.png';
|
|
static const String testDash2 = '$base/test_dash2.png';
|
|
}
|
|
|
|
abstract class IconsManager {
|
|
static const String base = 'assets/icons';
|
|
|
|
static const String home = '$base/home-2.svg';
|
|
|
|
static const String dashboardFill = '$base/dashboard-fill.svg';
|
|
static const String dashboard = '$base/dashboard.svg';
|
|
|
|
static const String devices = '$base/Devices.svg';
|
|
static const String devicesFill = '$base/Devices-fill.svg';
|
|
|
|
static const String routine = '$base/Routines.svg';
|
|
static const String routineFill = '$base/Routine-fill.svg';
|
|
|
|
static const String menu = '$base/Menu.svg';
|
|
static const String menuFill = '$base/Menu-fill.svg';
|
|
|
|
static const String layout = '$base/Layout.svg';
|
|
static const String layoutFill = '$base/Layout-fill.svg';
|
|
static const String frequency = '$base/frequency.svg';
|
|
static const String winter = '$base/winter.svg';
|
|
static const String active = '$base/active.svg';
|
|
static const String voltMeter = '$base/volt-meter.svg';
|
|
static const String summer = '$base/Summer.svg';
|
|
static const String CO2 = '$base/CO2.svg';
|
|
static const String sustainability = '$base/sustainability.svg';
|
|
}
|
|
|
|
abstract class VideosManager {
|
|
// static const String registrationVideo = 'assets/videos/video.mp4';
|
|
}
|