wThreeForth method

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

SizedBox widget with three-forth or 75% width of the MediaQuery width

Implementation

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