Search code examples
flutterflutter-image

Flutter Image can't be assigned to parameter type ImageProvider<Object>


CircleAvatar(
  radius: 30,
  backgroundImage: Image.asset("images/bg.png"),
),

Error:

The argument type 'Image' can't be assigned to the parameter type 'ImageProvider?'. (argument_type_not_assignable at [love_messenger] lib\main.dart:85)

What should ı do??


Solution

  • Use

     backgroundImage:AssetImage("images/bg.png") ,
    
    CircleAvatar(
      radius: 30,
      backgroundImage: AssetImage("images/bg.png"),
    ),