h40 method

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

SizedBox widget with 40% height of the MediaQuery height

Implementation

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