w48 method
SizedBox widget with 48% width
of the MediaQuery width
Implementation
Widget w48(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.percentWidth * 48,
child: this,
);
SizedBox widget with 48% width
of the MediaQuery width
Widget w48(BuildContext context, {Key? key}) => SizedBox(
key: key,
width: context.percentWidth * 48,
child: this,
);