From 838ca1753415d72d233f7993326902f3a45bc376 Mon Sep 17 00:00:00 2001 From: alexcodeberlin <159266599+alexcodeberlin@users.noreply.github.com> Date: Fri, 15 Nov 2024 14:00:22 +0100 Subject: [PATCH] Update README.md --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index b9b8a39..61236be 100644 --- a/docs/README.md +++ b/docs/README.md @@ -116,7 +116,7 @@ This are messages on the feed # Rendering on the feed The GenericFeed UI component is designed to display list with posts within a tabbed view. It includes a dynamic feed that updates in real-time with new content from a data provider. It allows users to scroll through different types of posts. -ScrollablePostsList and ScrollablePostsAndRepliesList Widgets render the lists of posts displayed within each tab. It's loading more posts when the user reaches the end. The feed’s state is managed by a GenericFeedState provider, which listens for updates from the getNotesProvider to get all posts. It handles the real-time updating of the feed through streams. It also handles and the integration of new posts into the feed. Below you can see the code how data is getting into the feed like described above. The return SkeletonNote() returns a userpost to the feed. +ScrollablePostsList and ScrollablePostsAndRepliesList Widgets render the lists of posts displayed within each tab. It's loading more posts when the user reaches the end. The feed’s state is managed by a GenericFeedState provider, which listens for updates from the getNotesProvider to get all posts. It handles the real-time updating of the feed through streams. It also handles and the integration of new posts into the feed. Below you can see the code how data is getting into the feed like described above. The SkeletonNote() is loading data into the feed. ```