Rounded Corners Image in Flutter

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

    With new version of flutter and material theme u need to use the "Padding" widgett too in order to have an image that doesn't fill its container.

    For example if you want to insert a rounded image in the AppBar u must use padding or your image will always be as high as the AppBar.

    Hope this will help someone

    InkWell(
            onTap: () {
                print ('Click Profile Pic');
            },
            child: Padding(
                padding: const EdgeInsets.all(8.0),
                child: ClipOval(
                    child: Image.asset(
                        'assets/images/profile1.jpg',
                    ),
                ),
            ),
        ),
    

提交回复
热议问题