UIButtonContent function
Button Content
Implementation
// ignore: non_constant_identifier_names
Widget UIButtonContent(UIButtonDefaults? as, String? label, Color? labelColor, Widget? icon) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
child: Center(
child: UIButtonLabel(as, label, labelColor),
),
),
icon ?? SizedBox.shrink(),
],
);
}