roundedRect static method
Rounded rectangle with customizable corner radius.
Implementation
static RoundedRectangleBorder roundedRect({double radius = 12}) {
return RoundedRectangleBorder(borderRadius: BorderRadius.circular(radius));
}
Rounded rectangle with customizable corner radius.
static RoundedRectangleBorder roundedRect({double radius = 12}) {
return RoundedRectangleBorder(borderRadius: BorderRadius.circular(radius));
}