h32 method

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

SizedBox widget with 32% height of the MediaQuery height

Implementation

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