Answers for "circle avatar image"

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

circle avatar in container

CircleAvatar(
  backgroundColor: Colors.brown.shade800,
  child: const Text('AH'),
)
Posted by: Guest on October-04-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language