appBar: AppBar(
title: Text('AppBar Height'),
toolbarHeight: 100.0, // double
automaticallyImplyLeading: false, // hides back button
),
appBar: PreferredSize(
preferredSize: Size.fromHeight(100.0),
child: AppBar(
automaticallyImplyLeading: false, // hides leading widget
flexibleSpace: SomeWidget(),
)
),
var height = AppBar().preferredSize.height;
var height = AppBar().preferredSize.height;
Flutter appbar default size : 56 logical pixels