Answers for "rounded rectangle image button flutter control"

11

rounded rectangle image button flutter control

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
1

rounded rectangle image button flutter control

ClipOval(
  child: Image.network(
    "image_url",
    height: 100,
    width: 100,
    fit: BoxFit.cover,
  ),
),
Posted by: Guest on August-02-2021
0

rounded rectangle image button flutter control

Container(
  width: 100.0,
  height: 150.0,
  decoration: BoxDecoration(
    image: DecorationImage(
        fit: BoxFit.cover, image: NetworkImage('Path to your image')),
    borderRadius: BorderRadius.all(Radius.circular(8.0)),
    color: Colors.redAccent,
  ),
),
Posted by: Guest on August-02-2021
0

rounded rectangle image button flutter control

CircleAvatar(
  radius: 20,
  backgroundImage: NetworkImage('https://via.placeholder.com/140x100')
)
Posted by: Guest on August-02-2021

Code answers related to "rounded rectangle image button flutter control"

Browse Popular Code Answers by Language