Skip to content

Commit

Permalink
chore: add vertical padding to the OrdersListView
Browse files Browse the repository at this point in the history
  • Loading branch information
Gambley1 committed Aug 6, 2024
1 parent 0965848 commit 98f970a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/orders/widgets/orders_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ class OrdersList extends StatelessWidget {
final orders = context.select((OrdersBloc bloc) => bloc.state.orders);

return SliverPadding(
padding: const EdgeInsets.symmetric(horizontal: AppSpacing.md),
padding: const EdgeInsets.symmetric(
horizontal: AppSpacing.md,
vertical: AppSpacing.md,
),
sliver: SliverList.builder(
itemBuilder: (context, index) {
final order = orders[index];
Expand Down

0 comments on commit 98f970a

Please sign in to comment.