h8 method

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

SizedBox widget with 8% height of the MediaQuery height

Implementation

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