Answers for "Flutter: Setting the height of the AppBar"

7

Flutter: Setting the height of the AppBar

appBar: PreferredSize(
  preferredSize: Size.fromHeight(100.0),
  child: AppBar(
    automaticallyImplyLeading: false, // hides leading widget
    flexibleSpace: SomeWidget(),
  )
),
Posted by: Guest on May-13-2020

Code answers related to "Flutter: Setting the height of the AppBar"

Code answers related to "Dart"

Browse Popular Code Answers by Language