superellipse_shape 0.2.0 superellipse_shape: ^0.2.0 copied to clipboard
A package for creating superellipse shapes in flutter. A superellipse is a shape constituting a transition between a rectangle and a circle.
Changelog #
0.2.0 - 2021-11-10 #
Added support for null-safety.
0.1.5 - 2019-01-08 #
Fixed #
- Fixed case where if you had a radius that was bigger than the shortest side of the rectangle, you would get a strange tie-fighter shape. This was solved by clamping all radii that were larger than the shortest side of the rectangle to the length of that side.
0.1.4 - 2019-01-08 #
Added #
- Added details to example and readme code examples.
- Added small example to
superellipse_shape.dart
class documentation.
Changed #
- Changed the way the border-radius of the shape is controlled. The class now uses
BorderRadiusGeometry
which also allows for control over individual corners. - Changed all examples and tests to be up-to-date with the new usage with
borderRadius
.
Fixed #
- Fixed testing on old
n
property.