h32 method
SizedBox widget with 32% height
of the MediaQuery height
Implementation
Widget h32(BuildContext context, {Key? key}) => SizedBox(
key: key,
height: context.percentHeight * 32,
child: this,
);
SizedBox widget with 32% height
of the MediaQuery height
Widget h32(BuildContext context, {Key? key}) => SizedBox(
key: key,
height: context.percentHeight * 32,
child: this,
);