Allowing users to save items to their profile and allow them to view them in profile

I’m trying to create an app with positive affirmations which are categorized by theme. So far I’ve been able to set up two tables one with the affirmations and the other with the themes.

I want to add a save or like button to each affirmation in the list so that the user can select it and then all the ones they have favorited will get shown in their profile under that theme list.

They should also from their profile be able to the unfavorite items.

This is my first Glide app so very new to the platform - would appreciate and tips.

A simple way to do it would be to add a user specific boolean column the table. Then add a switch component to the detail screen pointing to that new column. The user can favorite an item by clicking the switch. Then add a collection to the user profile screen, and filter it where the boolean is checked.

1 Like

Thanks that worked great!

1 Like