padding10 function
Implementation
Widget padding10(
Widget widget, {
double left = 10,
double top = 10,
double right = 10,
double bottom = 10,
}) {
return Padding(
padding: EdgeInsets.fromLTRB(left, top, right, bottom), child: widget);
}