How can I get the height of an AppBar in Flutter? I am using the MarialApp Widget (\'package:flutter/material.dart\'). I have the height of my C
Get body height:
MediaQuery.of(context).size.height - (MediaQuery.of(context).padding.top + kToolbarHeight)
I hope, this solution will also help you. Thanks to ask this question.