wFull method

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

SizedBox widget with full width of the MediaQuery width

Implementation

Widget wFull(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.screenWidth,
      child: this,
    );