简体   繁体   中英

How to have border radius in flutter video player?

I am trying to have border-radius for the video player in my flutter app. I tried to use border-radius to the parent Container(). But it didn't work.

在此处输入图片说明

I got the result using ClipRRect. Just wrapped the video player with ClipRRect with some radius and it worked fine.

    ClipRRect(
        borderRadius: BorderRadius.circular(15),
        child: VideoPlayer(_controller)
     )

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM