How do I add a container at the end of my grid view in Flutter?
问题 I have a GridView and I want to add a bannerAd after the gridview scroll ends. The bannerAd is called from the dependency https://github.com/kmcgill88/admob_flutter. The code for the GridView is as follows Widget build(BuildContext context) { SystemChrome.setEnabledSystemUIOverlays([]); return WillPopScope( onWillPop: () async { return true; }, child: Scaffold( body: Container( decoration: BoxDecoration( gradient: LinearGradient( colors: [const Color(0xFFFEFEFE), const Color(0xFFFEFEFE)],