w1 method

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

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,
    );