superellipse_shape 0.1.4 copy "superellipse_shape: ^0.1.4" to clipboard
superellipse_shape: ^0.1.4 copied to clipboard

outdated

A package for creating superellipse shapes in flutter. A superellipse is a shape constituting a transition between a rectangle and a circle, and is used to create smooth rounded corners.

Superellipse Shape #

Superellipses in flutter!

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(
        borderRadius: BorderRadius.circular(28),
      ), // SuperellipseShape
      child: Container(
        width: 100.0,
        height: 100.0,
      ), // Container
    ); // Material

  }

}
44
likes
0
pub points
84%
popularity

Publisher

unverified uploader

A package for creating superellipse shapes in flutter. A superellipse is a shape constituting a transition between a rectangle and a circle, and is used to create smooth rounded corners.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on superellipse_shape