Skip to content

Commit

Permalink
Change loading indicator to match PaginatedScrollView
Browse files Browse the repository at this point in the history
  • Loading branch information
DeD1rk committed Jan 31, 2023
1 parent 786b50c commit b6c050f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/ui/screens/event_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -548,11 +548,10 @@ class _EventScreenState extends State<EventScreen> {
_makeRegistrations(listState),
if (listState is LoadingMoreListState)
const SliverPadding(
padding: EdgeInsets.all(8),
sliver: SliverList(
delegate: SliverChildListDelegate.fixed([
Center(child: CircularProgressIndicator()),
]),
padding: EdgeInsets.only(top: 16),
sliver: SliverToBoxAdapter(
child: Center(
child: CircularProgressIndicator()),
),
),
],
Expand Down

0 comments on commit b6c050f

Please sign in to comment.