Flutter CircleAvatar backgroundImage not filling up the circle. You can always create an image and manually clip it:
Here is an example:
1 2 3 4 5 6 7 8 |
ClipOval( child: Image.network( "url.jpg", fit: BoxFit.cover, width: 90.0, height: 90.0, ) ), |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.