hOneThird method
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,
);