Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mrrhak committed Jul 25, 2022
1 parent 0b7eb46 commit 13f35cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
24 changes: 12 additions & 12 deletions example/flavor_app/lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ class App extends StatelessWidget {
}) =>
show
? Banner(
child: child,
location: BannerLocation.topStart,
message: F.name,
color: Colors.green.withOpacity(0.6),
textStyle: TextStyle(
fontWeight: FontWeight.w700,
fontSize: 12.0,
letterSpacing: 1.0),
textDirection: TextDirection.ltr,
)
child: child,
location: BannerLocation.topStart,
message: F.name,
color: Colors.green.withOpacity(0.6),
textStyle: TextStyle(
fontWeight: FontWeight.w700,
fontSize: 12.0,
letterSpacing: 1.0),
textDirection: TextDirection.ltr,
)
: Container(
child: child,
);
child: child,
);
}
1 change: 0 additions & 1 deletion example/flavor_app/lib/flavors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ class F {
return 'title';
}
}

}

0 comments on commit 13f35cc

Please sign in to comment.