Skip to content

Commit

Permalink
Add bottom padding to lists
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanSarwar45 committed Jan 10, 2025
1 parent 457966f commit d7d9d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/common/widgets/list/custom_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ class _CustomListViewState<Item extends ListItem>
proxyDecorator: (widget, index, animation) =>
reorderableListDecorator(context, widget),
items: currentList,
padding:
const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
padding: const EdgeInsets.only(
left: 16, right: 16, top: 8, bottom: 64),
isSameItem: (a, b) => a.id == b.id,
scrollDirection: Axis.vertical,
itemBuilder: _getItemBuilder(),
Expand Down

0 comments on commit d7d9d33

Please sign in to comment.