h4 method

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

SizedBox widget with 4% height of the MediaQuery height

Implementation

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