From 98e1e508912c94738cc1792a2ffc0197abeb0851 Mon Sep 17 00:00:00 2001 From: MohammadTaha Basiri Date: Sun, 2 Jan 2022 15:09:47 +0330 Subject: [PATCH] asset paths fixed --- lib/constants/assets.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/constants/assets.dart b/lib/constants/assets.dart index cf1b73a..66bffde 100644 --- a/lib/constants/assets.dart +++ b/lib/constants/assets.dart @@ -29,10 +29,10 @@ class Assets { static String get techCategoryIcon => _baseImagesPath + '/categories/tech-$_themeSuffix.svg'; - static const String lightTheme = _baseThemesPath + '/light-theme.svg'; - static const String darkTheme = _baseThemesPath + '/dark-theme.svg'; + static const String lightTheme = _baseThemesPath + '/theme-light.svg'; + static const String darkTheme = _baseThemesPath + '/theme-dark.svg'; - static String get recordDark => _baseRecordsPath + '/$_themeSuffix-theme.svg'; + static String get record => _baseRecordsPath + '/record-$_themeSuffix.svg'; static String get _themeSuffix => DesignConfig.brightness == Brightness.dark ? 'dark' : 'light';