vw100 method
Sets width to 100vw (100% of viewport width).
Implementation
Widget vw100(BuildContext context) => SizedBox(
width: MediaQuery.of(context).size.width,
child: this,
);
Sets width to 100vw (100% of viewport width).
Widget vw100(BuildContext context) => SizedBox(
width: MediaQuery.of(context).size.width,
child: this,
);