flutter screen util font size error code example
Example 1: flutter screen size
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
Example 2: how to get screen size in flutter
double width = MediaQuery. of(context). size. width;
double height = MediaQuery. of(context). size. height;