Rounded Corners Image in Flutter

后端 未结 15 1969
难免孤独
难免孤独 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条回答
  •  失恋的感觉
    2020-12-22 19:09

    You can also use CircleAvatar, which comes with flutter

    CircleAvatar(
      radius: 20,
      backgroundImage: NetworkImage('https://via.placeholder.com/140x100')
    )
    

提交回复
热议问题