How to make Scaffold body fill the screen from the top of the AppBar to the bottom of the screen in Flutter
I have a transparent AppBar and I want the body of the Scaffold to start from the top of the AppBar and end at the bottom. My code is as follows: Scaffold( appBar: AppBar( foregroundColor: Colors.black, backgroundColor: Colors.transparent, elevation: 0,…