Answers for "how to add circle image in flutter"

4

circle avatar from image asset flutter

CircleAvatar(
    radius: 16.0,
    child: ClipRRect(
        child: Image.asset('profile-generic.png'),
        borderRadius: BorderRadius.circular(50.0),
    ),
),
Posted by: Guest on January-26-2021
0

asset image in circle avatar flutter

leading: CircleAvatar(
  backgroundImage: Image.asset('assets/horse.png'),
)
Posted by: Guest on January-04-2022

Code answers related to "how to add circle image in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language