w8 method

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

SizedBox widget with 8% width of the MediaQuery width

Implementation

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