Answers for "flutter rounded corner shape"

11

flutter image round corner

ClipRRect(
    borderRadius: BorderRadius.circular(8.0),
    child: Image.network(
        subject['images']['large'],
        height: 150.0,
        width: 100.0,
    ),
)
Posted by: Guest on April-15-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

Code answers related to "flutter rounded corner shape"

Browse Popular Code Answers by Language