瀏覽代碼

fetch icon by name only

Luis Aparicio 1 周之前
父節點
當前提交
5113e61e51
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      lib/main.dart

+ 1
- 1
lib/main.dart 查看文件

@@ -208,7 +208,7 @@ class _HomePageState extends State<HomePage> {
208 208
                       // Show data card
209 209
                       final card = infoCards[index];
210 210
                       return CustomInfoCard(
211
-                        imagePath: card['image'],
211
+                        imagePath: "assets/icons/${card['image']}",
212 212
                         title: card['title'],
213 213
                         subtitle: card['subtitle'],
214 214
                       );