Answers for "flutter image border radius color"

11

Flutter give image rounded corners

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

Code answers related to "flutter image border radius color"

Browse Popular Code Answers by Language