flutter network image size code example
Example 1: flutter screen size
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
Example 2: flutter network image size
Image.network(
url,
width: width,
height: height,
fit: BoxFit.cover,
));