w0 method

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

SizedBox widget with 0% width of the MediaQuery width

Implementation

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