Rounded Corners Image in Flutter

后端 未结 15 1979
难免孤独
难免孤独 2020-12-22 18:34

I am using Flutter to make a list of information about movies. Now I want the cover image on the left to be a rounded corners picture. I did the following, but it didn’t wor

15条回答
  •  Happy的楠姐
    2020-12-22 19:12

    Use ClipRRect it will work perfectly

    ClipRRect(
        borderRadius: BorderRadius.circular(8.0),
        child: Image.network(
            subject['images']['large'],
            height: 150.0,
            width: 100.0,
        ),
    )
    

提交回复
热议问题