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