Answers for "appbar size in flutter"

5

flutter appbar width

appBar: AppBar(
          title: Text('AppBar Height'),
          toolbarHeight: 100.0, // double
          automaticallyImplyLeading: false, // hides back button
        ),
Posted by: Guest on August-20-2021
0

flutter how to find the appbar size

var height = AppBar().preferredSize.height;
Posted by: Guest on November-19-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language