Hello everyone,
I’m building a social-style feed screen in my Glide App, where users can view posts made by others. I’d like to know how to:
- Add a Share button to each post so that users can share the post (and it displays properly on their screen).
- Add Like and Comment buttons below each post so that other users can interact , like a post, leave comments, and see the total number of likes or comments in real time.
I already have a Posts table containing fields like User Name, Post Content, and Timestamp, but I’m not sure how to properly configure the buttons and link them to my data so that the interactions (like, comment, share) are visible to all users.
Can anyone please guide me step-by-step or share an example setup?
Thank You