Rounded Corners Image in Flutter

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

    Use this Way in this circle image is also working + you have preloader also for network image:

    new ClipRRect(
         borderRadius: new BorderRadius.circular(30.0),
         child: FadeInImage.assetNetwork(
              placeholder:'asset/loader.gif',
              image: 'Your Image Path',
          ),
        )
    

提交回复
热议问题