25 lines
1005 B
Dart
25 lines
1005 B
Dart
class Assets {
|
|
static const String _basePath = 'lib/assets';
|
|
static const String _baseImagesPath = _basePath + '/images';
|
|
static const String _baseAnimationsPath = _basePath + '/animations';
|
|
|
|
static const String verticalLogoWithText =
|
|
_baseImagesPath + '/logos/logo-v-t.png';
|
|
static const String horizontalLogoWithText =
|
|
_baseImagesPath + '/logos/logo-h-t.png';
|
|
|
|
static const String logoLoadingAnimation =
|
|
_baseAnimationsPath + '/indicator.riv';
|
|
|
|
static const businessCategoryIcon =
|
|
_baseImagesPath + '/categories/business.png';
|
|
static const economicCategoryIcon =
|
|
_baseImagesPath + '/categories/economic.png';
|
|
static const enviromentalCategoryIcon =
|
|
_baseImagesPath + '/categories/enviromental.png';
|
|
static const politicalCategoryIcon =
|
|
_baseImagesPath + '/categories/political.png';
|
|
static const socialCategoryIcon = _baseImagesPath + '/categories/social.png';
|
|
static const techCategoryIcon = _baseImagesPath + '/categories/tech.png';
|
|
}
|