h64 method

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

SizedBox widget with 64% height of the MediaQuery height

Implementation

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