Semi-new to Adalo, I’ve gotten used to the way it works and how to use it for the most part.
However, I’m struggling a list concept that I’m not sure how to make work in Adalo.
In the app I’m building there are two groups of users. The first group is a group looking to buy items. The second group is the sellers. All part of a group of users.
There are multiple types of properties to each group that are similar to one another, eg. geographic location or price ranges.
I would like to generate a Suggested List that shows the sellers with the most matches in their profile first. The less matches with the buyer, the later they appear in the list. Sellers with no matches will not be shown.
How can I do this? Any advice would be greatly appreciated.
If I am on the same page with the original poster, I believe the issue we are having is that we want to sort a list of objects by comparing them to the user’s chosen criteria.
For example, if a hotel booking app has three hotels with various special accomodations:
Hotel A: Pool, Beach, Park
Hotel B: Park, Beach
Hotel C: Pool, Spa
If a user selects the options “Pool” and “Spa”, the hotels should be displayed in this order:
Hotel C (2 matches)
Hotel A (1 match)
Hotel B should be excluded because it has zero matches to the chosen options by the user.
I have seen your cloneable “Bondbae” app that you worked on, and it is very close to what I think we are looking for, but I believe your app sorts from smallest number of matches to largest number of matches, while we are looking for the opposite order, largest number of matches to smallest.
I hope this clarifies in a way that can get us closer to a solution.