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