Hi @Vered,
In regards to mood selection: there are several ways to make this work.
To start with, you need to have “Moods” collection:
- mood value (number)
- relation to User (one User can have many Moods, but each Mood belongs to one User)
Option 1: if you’d like to move to the next screen just by clicking the icon, you can put 10 icons on the screen and for each icon add an action to create a record in “Moods” collection, and 2nd action to move to next screen.
Option 2: if you’d like to allow user first to select a mood (this is radio button functionality) and then press some other button to submit the mood, then you will have to use approach similar to this one: Adalo hints: creating radio buttons using Toggles - YouTube.
Option 3: there is a radio button component in the Components Marketplace, you can use it.
Option 4: instead of having Radio Buttons you can use Slider component to choose the mood. In this case you add an auxiliary property to Users collection (call it TMPMood, number). Slider will adjust this property (Logged-in User → TMPMood). And you can add an action create a record in “Moods” collection on another button (call it Submit).
In regards to selecting several photos from phone photo gallery: unfortunately this is not possible in Adalo. Image picker allows you to take picture or select one photo.
Best,
Victor.