Skip to content

Commit a2d6250

Browse files
committed
🎨 Fix format that pub.dev suggest
1 parent 32ef621 commit a2d6250

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/src/widget/fixed_appbar.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ class FixedAppBar extends StatelessWidget implements PreferredSizeWidget {
8989
Widget child = Container(
9090
width: Screens.width,
9191
height: (height ?? kToolbarHeight) + MediaQuery.of(context).padding.top,
92-
padding: EdgeInsetsDirectional.only(top: MediaQuery.of(context).padding.top),
92+
padding: EdgeInsetsDirectional.only(
93+
top: MediaQuery.of(context).padding.top,
94+
),
9395
child: Stack(
9496
children: <Widget>[
9597
if (automaticallyImplyLeading && Navigator.of(context).canPop())

0 commit comments

Comments
 (0)