w64 method

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

SizedBox widget with 64% width of the MediaQuery width

Implementation

Widget w64(BuildContext context, {Key? key}) => SizedBox(
      key: key,
      width: context.percentWidth * 64,
      child: this,
    );