We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ef621 commit a2d6250Copy full SHA for a2d6250
lib/src/widget/fixed_appbar.dart
@@ -89,7 +89,9 @@ class FixedAppBar extends StatelessWidget implements PreferredSizeWidget {
89
Widget child = Container(
90
width: Screens.width,
91
height: (height ?? kToolbarHeight) + MediaQuery.of(context).padding.top,
92
- padding: EdgeInsetsDirectional.only(top: MediaQuery.of(context).padding.top),
+ padding: EdgeInsetsDirectional.only(
93
+ top: MediaQuery.of(context).padding.top,
94
+ ),
95
child: Stack(
96
children: <Widget>[
97
if (automaticallyImplyLeading && Navigator.of(context).canPop())
0 commit comments