h56 method

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

SizedBox widget with 56% height of the MediaQuery height

Implementation

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