superellipse_shape 0.1.3 superellipse_shape: ^0.1.3 copied to clipboard
A package for creating superellipse shapes in flutter. A superellipse is used to make smooth rounded edges on a widget, smoother than border-radius.
Superellipse Shape #
A package for creating superellipse shapes in flutter.
class SuperellipseDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
color: Colors.blueAccent[400],
shape: SuperellipseShape(25.0),
child: Container(
width: 100.0,
height: 100.0,
),
);
}
}