AssetImage is not displaying image in flutter app

前端 未结 9 562
野趣味
野趣味 2021-01-13 00:33

image not displaying in flutter app. But I got some errors in debug console.

I/FlutterActivityDelegate(22603): onResume setting current activity to this
I/Fl         


        
9条回答
  •  情话喂你
    2021-01-13 00:42

    Refer https://api.flutter.dev/flutter/painting/AssetImage-class.html

    Add assets images in pubspec.yaml file and in the asset mention the path from images and it works fine.

     new AssetImage("images/logo.png")
    

    For example

    CircleAvatar(
      radius: 80,
      backgroundImage: AssetImage('images/logo.png'),
     ),
    

提交回复
热议问题