hOneForth method

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

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

Implementation

Widget hOneForth(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      height: context.percentHeight * 25,
      child: this,
    );