This commit is contained in:
MohammadTaha Basiri 2022-01-05 12:58:10 +03:30
parent 1a9c9056d4
commit 0202c65080
5 changed files with 5 additions and 4 deletions

Binary file not shown.

View File

@ -13,8 +13,8 @@ class Assets {
static String get horizontalLogoWithText => static String get horizontalLogoWithText =>
_baseImagesPath + '/logos/logo-horizontal-$_themeSuffix.svg'; _baseImagesPath + '/logos/logo-horizontal-$_themeSuffix.svg';
static const String logoLoadingAnimation = static String get logoLoadingAnimation =>
_baseAnimationsPath + '/indicator.riv'; _baseAnimationsPath + '/indicator-$_themeSuffix.riv';
static String get businessCategoryIcon => static String get businessCategoryIcon =>
_baseImagesPath + '/categories/business-$_themeSuffix.svg'; _baseImagesPath + '/categories/business-$_themeSuffix.svg';

View File

@ -24,7 +24,7 @@ class ActionSheetUtils {
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
horizontal: MediaQuery.of(context).size.width / 3, horizontal: MediaQuery.of(context).size.width / 3,
), ),
child: const RiveAnimation.asset(Assets.logoLoadingAnimation), child: RiveAnimation.asset(Assets.logoLoadingAnimation),
// ), // ),
), ),
); );

View File

@ -103,7 +103,8 @@ flutter:
- lib/assets/images/themes/theme-dark.svg - lib/assets/images/themes/theme-dark.svg
- lib/assets/images/records/record-dark.svg - lib/assets/images/records/record-dark.svg
- lib/assets/images/records/record-light.svg - lib/assets/images/records/record-light.svg
- lib/assets/animations/indicator.riv - lib/assets/animations/indicator-light.riv
- lib/assets/animations/indicator-dark.riv