xxxxxxxxxx
appBar: AppBar(
title: Text('AppBar Height'),
toolbarHeight: 100.0, // double
automaticallyImplyLeading: false, // hides back button
),
xxxxxxxxxx
AppBar(
title: Text('My App'),
// Set the desired height for the AppBar
toolbarHeight: 80,
// Wrap AppBar with PreferredSize and set preferredSize property
bottom: PreferredSize(
preferredSize: Size.fromHeight(80),
child: Container(
height: 80,
child: Row(
// AppBar content
),
),
),
);