w10 method

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

SizedBox widget with 10% width of the MediaQuery width

Implementation

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