wOneForth method

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

SizedBox widget with one-forth or 25% width of the MediaQuery width

Implementation

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