ClipOval

In Flutter, the ClipOval widget clips its child widget into an oval or rounded shape. This means that any content drawn outside the oval area will be cut off or masked.

ClipOval(
child: //widgets
)

Last updated