h1 method

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

SizedBox widget with 1% height of the MediaQuery height

Implementation

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