Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/post/pages/post_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@ class _PostPageState extends State<PostPage> {
/// Whether the user changed during the course of viewing the post
bool userChanged = false;

@override
void initState() {
super.initState();

scrollController.addListener(() {
// Fetches new comments when the user has scrolled past 70% list
if (scrollController.position.pixels > scrollController.position.maxScrollExtent * 0.7 && context.read<PostBloc>().state.status == PostStatus.success) {
context.read<PostBloc>().add(const GetPostCommentsEvent());
}
});
}

@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
Expand Down