Rounded Corners Image in Flutter

后端 未结 15 1968
难免孤独
难免孤独 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:16

    Try This it works well.

    Container(
      height: 220.0,
      width: double.infinity,
      decoration: BoxDecoration(
        borderRadius: new BorderRadius.only(
          topLeft: Radius.circular(10),
           topRight: Radius.circular(10),
        ),
        image: DecorationImage(
          fit: BoxFit.fill,
          image: NetworkImage(
            photoUrl,
          ),
         ),
       ),
    );
    

提交回复
热议问题