There was an error while loading. Please reload this page.
1 parent 021a694 commit f79dbd8Copy full SHA for f79dbd8
configuration/lib/utility/image_provide.dart
@@ -1 +1,5 @@
1
-String logo = 'assets/images/logo.jpg';
+String logo = 'logo.jpg'.fromAssets;
2
+
3
+extension AssetsImage on String{
4
+ get fromAssets => 'assets/images/${this}';
5
+}
0 commit comments