Skip to content

Commit

Permalink
Fix missing padding
Browse files Browse the repository at this point in the history
  • Loading branch information
DeD1rk committed Dec 1, 2021
1 parent 7264bf6 commit facad59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ui/screens/event_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -903,12 +903,12 @@ class _EventScreenState extends State<EventScreen> {
);
} else if (state.hasException) {
return SliverPadding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 0),
padding: const EdgeInsets.only(left: 16, right: 16, top: 0, bottom: 16),
sliver: SliverToBoxAdapter(child: Text(state.message!)),
);
} else {
return SliverPadding(
padding: const EdgeInsets.only(left: 16, right: 16, top: 8, bottom: 8),
padding: const EdgeInsets.only(left: 16, right: 16, top: 8, bottom: 16),
sliver: SliverGrid(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3,
Expand Down

0 comments on commit facad59

Please sign in to comment.