diff --git a/lib/screens/CommentScreen.dart b/lib/screens/CommentScreen.dart index 8305e48..6497a02 100644 --- a/lib/screens/CommentScreen.dart +++ b/lib/screens/CommentScreen.dart @@ -66,8 +66,8 @@ class _CommentScreenState extends State { children: [ _buildPrePage(page), ...page.docs.map((e) => _buildComment(e)), - _buildPostComment(), _buildNextPage(page), + _buildPostComment(), ], ); }, diff --git a/lib/screens/components/CommentList.dart b/lib/screens/components/CommentList.dart index 336cc3b..f740d6e 100644 --- a/lib/screens/components/CommentList.dart +++ b/lib/screens/components/CommentList.dart @@ -65,8 +65,8 @@ class _CommentListState extends State { children: [ _buildPrePage(page), ...page.docs.map((e) => _buildComment(e)), - _buildPostComment(), _buildNextPage(page), + _buildPostComment(), ], ); },