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