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