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