Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Salby/superellipse_shape

A package for creating superellipse shapes in flutter
https://github.com/Salby/superellipse_shape

dart flutter geometry

Last synced: 3 months ago
JSON representation

A package for creating superellipse shapes in flutter

Awesome Lists containing this project

README

        

# Superellipse Shape

![Superellipses in flutter!](https://i.imgur.com/HbfbgBL.png)

A package for creating superellipse shapes in flutter.

___

```dart
class SuperellipseDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
color: Colors.blueAccent[400],
shape: SuperellipseShape(
borderRadius: BorderRadius.circular(28.0),
), // SuperellipseShape
child: Container(
width: 100.0,
height: 100.0,
), // Container
); // Material
}
}
```