hOneThird method

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

SizedBox widget with one-third or 33.33% height of the MediaQuery height

Implementation

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