How to get AppBar height in Flutter?

前端 未结 10 1902
长发绾君心
长发绾君心 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:29

    AppBar has a fixed height of 56.

    You should create your own appbar implementing PreferredSizeWidget

    class TestAppBar extends StatelessWidget implements PreferredSizeWidget {
      @override
      Widget build(BuildContext context) {
        return AppBar(
          title: Text('TEST'),
          centerTitle: true,
        );
      }
    
      @override
      Size get preferredSize => Size.fromHeight(34);
    }
    

提交回复
热议问题