superellipse_shape 0.1.0 superellipse_shape: ^0.1.0 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(5.0),
child: Container(
width: 100.0,
height: 100.0,
),
);
}
}
Getting Started #
This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.