mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
17 lines
487 B
Dart
17 lines
487 B
Dart
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';
|
|
}
|
|
|
|
class IconsManager {
|
|
// static const String facebookIcon = 'assets/icons/icon.png';
|
|
}
|
|
|
|
class VideosManager {
|
|
// static const String registrationVideo = 'assets/videos/video.mp4';
|
|
}
|