I am using GridView in my Flutter app to display images and their titles. Please check the below code.
GridView
Flutter
import \'package:flutter/mat
Widget build(BuildContext context) { final _screenSize = MediaQuery.of(context).size; return Container( height: _screenSize.height * 0.2,); }
MediaQuery.of(context) It worked for me to use!
MediaQuery.of(context)