h10 method

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

SizedBox widget with 10% height of the MediaQuery height

Implementation

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