h16 method

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

SizedBox widget with 16% height of the MediaQuery height

Implementation

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