How to get AppBar height in Flutter?

前端 未结 10 1913
长发绾君心
长发绾君心 2020-12-14 14:50

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

10条回答
  •  余生分开走
    2020-12-14 15:32

    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);
    

提交回复
热议问题