h60 method

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

SizedBox widget with 60% height of the MediaQuery height

Implementation

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