w32 method

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

SizedBox widget with 32% width of the MediaQuery width

Implementation

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