Answers for "circle avatar height flutter"

1

flutter chip avatar radius increases

Chip(
              avatar: CircleAvatar(
                radius: 20.0,
                child: const Text('C'),
              ),
              label: const Text('Chip'),
              labelPadding: EdgeInsets.all(10.0),
            ),
Posted by: Guest on August-25-2021
4

how to make an image contained in circle avatar in flutter

CircleAvatar(
                radius: 30.0,
                backgroundImage:
                    NetworkImage("${snapshot.data.hitsList[index].previewUrl}"),
                backgroundColor: Colors.transparent,
              )
Posted by: Guest on June-08-2020
0

flutter squared avatar rounded borders

ClipRRect(
  borderRadius: BorderRadius.circular(20.0),//or 15.0
  child: Container(
    height: 70.0,
    width: 70.0,
    color: Color(0xffFF0E58),
    child: Icon(Icons.volume_up, color: Colors.white, size: 50.0),
  ),
),
Posted by: Guest on May-03-2021

Browse Popular Code Answers by Language