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
You can use this:
@override final Size preferredSize; // default is 56.0 WidgetAppBar({@required this.appBarTitle, @required this.appBarColor, Key key}) : preferredSize = Size.fromHeight(40), super(key: key);