h20 method

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

SizedBox widget with 20% height of the MediaQuery height

Implementation

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