Explorar el Código

fetch icon by name only

Luis Aparicio hace 1 semana
padre
commit
5113e61e51
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lib/main.dart

+ 1
- 1
lib/main.dart Ver fichero

@@ -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
                       );