get the dimensions of screen in flutter in stateless widget code example
Example: how to get the display size of mobile display in flutter
getHeightWidth(context){
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
setState(() {
heightHolder = height.roundToDouble();
widthHolder = width.roundToDouble() ;
});
}