buttonChildContent method
Implementation
Widget buttonChildContent() {
if (expanded) {
return SizedBox(
width: double.infinity,
child: Align(child: child!),
);
} else {
return child!;
}
}
Widget buttonChildContent() {
if (expanded) {
return SizedBox(
width: double.infinity,
child: Align(child: child!),
);
} else {
return child!;
}
}