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