Hello, i am new here, can anyone help because i can’t find a tutorial on youtube.
I want to make my personal app, and when i post something new on the lists, i want the other user to see this as Unread.
Thank you!
Hello, i am new here, can anyone help because i can’t find a tutorial on youtube.
I want to make my personal app, and when i post something new on the lists, i want the other user to see this as Unread.
Thank you!
trueThanks for the answer mate!
Can you expain me step by step how to do this?
Sorry, i am not experienced yet ![]()

Can someone make a tutorial how to see unread topics with a mark at the photo like example… i will appreciate this!!!
I can’t find a tutorial to doing that ![]()
The best advice I can give you is to review the relevant documentation.
You just need one boolean column to determine if the content is read or not read.
By default, when you create a new row, the value in that boolean should not be checked. Then, if a user clicks the item, you should change the value to true and show them the details screen of the item.
Why do you have a both a Read and an Unread column? You only need one. Get rid of the Unread column. If the Read column is unchecked then it’s unread. If it’s checked then it’s read. When a person reads a post, then check the box for that post. If any boxes are unchecked, then they have unread posts.
Do you need to show the “Unread” and “Read” text on the list? I assume yes?
Then change the first logic to “is not checked”, to cover in case you want users to mark an item as unread in the future.
Next, set the action on the item column as detailed here.