Answers for "flutter imagebutton rounded"

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
0

rounded rectangle image button flutter control

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

Browse Popular Code Answers by Language