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??
Use
backgroundImage:AssetImage("images/bg.png") ,
CircleAvatar(
radius: 30,
backgroundImage: AssetImage("images/bg.png"),
),