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