h48 method

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

SizedBox widget with 48% height of the MediaQuery height

Implementation

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