TF-3772 Animated splash iOS
This commit is contained in:
@@ -2,4 +2,5 @@ class AssetsPaths {
|
||||
static const images = 'assets/images/';
|
||||
static const icons = 'assets/icons/';
|
||||
static const configurationImages = 'configurations/icons/';
|
||||
static const animations = 'assets/animations/';
|
||||
}
|
||||
@@ -231,11 +231,21 @@ class ImagePaths {
|
||||
String get icDoubleArrowDown => _getImagePath('ic_double_arrow_down.svg');
|
||||
String get icRefreshQuotas => _getImagePath('ic_refresh_quotas.svg');
|
||||
String get icCreateFilter => _getImagePath('ic_create_filter.svg');
|
||||
String get icTwakeWorkplace => _getIconPath('icon_twp.png');
|
||||
String get animLottieTmail => _getAnimationPath('lottie-tmail.json');
|
||||
|
||||
String _getImagePath(String imageName) {
|
||||
return AssetsPaths.images + imageName;
|
||||
}
|
||||
|
||||
String _getIconPath(String iconName) {
|
||||
return AssetsPaths.icons + iconName;
|
||||
}
|
||||
|
||||
String _getAnimationPath(String animationName) {
|
||||
return AssetsPaths.animations + animationName;
|
||||
}
|
||||
|
||||
String getConfigurationImagePath(String imageName) {
|
||||
return AssetsPaths.configurationImages + imageName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user