h15 method

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

SizedBox widget with 15% height of the MediaQuery height

Implementation

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