cupertino_rounded_corners 1.0.3 copy "cupertino_rounded_corners: ^1.0.3" to clipboard
cupertino_rounded_corners: ^1.0.3 copied to clipboard

outdated

A new Flutter package to make cupertino rounded corners also refrered to as squircles using a bezier path and having the two points in the corners

cupertino_rounded_corners #

A new Flutter package to make cupertino rounded corners also refrered to as squircles using a bezier path and having the two points in the corners

Getting Started #

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

Import it #

import 'package:cupertino_rounded_corners/cupertino_rounded_corners.dart';

To make your own card #

new Container(
  decoration: new BoxDecoration(
    color: Colors.transparent,
    borderRadius: new BorderRadius.all(
      new Radius.circular(4.0),
    ),
  ),
  margin: margin,
  child: new Material(
    color: color,
    shape: new SquircleBorder(
      radius: 20.0,
    ),
    elevation: elevation,
    child: new Padding(padding: padding, child: child),
  ),
);

Use the card #

CupertinoCard(
  child: cont Text("HELLO WORLD"),
  elevation: 2.0,
  margin: const EdgeInsets.all(4.0),
  padding: const EdgeInsets.all(0.0),
  color: Colors.white,
  radius: 20.0,
});
46
likes
0
pub points
78%
popularity

Publisher

unverified uploader

A new Flutter package to make cupertino rounded corners also refrered to as squircles using a bezier path and having the two points in the corners

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on cupertino_rounded_corners