how to find the size of screen in flutter out of scaffold code example
Example: flutter screen size
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;