w20 method

Widget w20(
  1. BuildContext context, {
  2. Key? key,
})

SizedBox widget with 20% width of the MediaQuery width

Implementation

Widget w20(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.percentWidth * 20,
      child: this,
    );