I want to remove the overflow warning of the part that cuts the screen. I am creating a circle and want to cut a section of it. I want to do something like the image below.
Container(
margin: EdgeInsets.only(top: 50,left: 150),
//width: MediaQuery.of(context).size.width,
child: Container(
height:MediaQuery.of(context).size.width,
width: MediaQuery.of(context).size.width,
child: ClipOval(
child: SomeWidget
)
)
)
Image Link: https://i.sstatic.net/WAnTq.jpg