Features
package allows to do beautuful buttons, containers etc.
Getting started
Just download package and use it
Usage
Container(
margin: EdgeInsets.only(bottom: 20),
width: 200,
height: 100,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
),
child: const Material(
elevation: 5,
color: Color(0xFFD2E8FC),
shape: SquircleBorder(
side: BorderSide(color: Color(0xFFD2E8FC), width: 1.9),
),
child: ListTile(
contentPadding: EdgeInsets.all(10),
title: Text('example', textAlign: TextAlign.center,),
),
)
)