Skip to content

Commit

Permalink
Fix notifications page padding
Browse files Browse the repository at this point in the history
  • Loading branch information
micahmo committed Jan 20, 2024
1 parent d8759c2 commit 8518b70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions lib/inbox/widgets/inbox_replies_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class _InboxRepliesViewState extends State<InboxRepliesView> {
}
},
child: ListView.builder(
padding: EdgeInsets.zero,
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
itemCount: widget.replies.length,
Expand Down
9 changes: 3 additions & 6 deletions lib/thunder/pages/notifications_pages.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,9 @@ class NotificationsReplyPage extends StatelessWidget {
),
SliverToBoxAdapter(
child: Material(
child: Transform(
transform: Matrix4.translationValues(0, -24, 0),
child: InboxRepliesView(
replies: replies,
showAll: true,
),
child: InboxRepliesView(
replies: replies,
showAll: true,
),
),
),
Expand Down

0 comments on commit 8518b70

Please sign in to comment.