Skip to content

Commit

Permalink
added padding to list bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
clragon committed Apr 14, 2021
1 parent 7d376cf commit e13a2d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/settings/pages/denylist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ class _DenyListPageState extends State<DenyListPage> {
}

return ListView.builder(
padding: EdgeInsets.only(bottom: 30),
itemCount: denylist.length,
itemBuilder: (BuildContext context, int index) {
return Padding(
Expand Down
1 change: 1 addition & 0 deletions lib/settings/pages/follows.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ class _FollowingPageState extends State<FollowingPage> {
}

return ListView.builder(
padding: EdgeInsets.only(bottom: 30),
itemCount: follows.length,
itemBuilder: (BuildContext context, int index) {
return Padding(
Expand Down

0 comments on commit e13a2d2

Please sign in to comment.