Updating a user profile

I am working with Supabase to create an onboarding process that consists of the following flow:

Screen 1 - Collecting first and last name, e-mail, DOB, and password. All are text fields besides the DOB, which is a date/time picker.

Screen 2 - Asking them where they're traveling next using the place picker and selecting interests using choice chips.

Screen 3- Allowing/Deny location permissions and a user has completed the onboarding and has access to the app.

I have two different tables set up in Supabase. One is for collecting all user's future trip locations, and the other is for collecting the interests of each user. The data that appears in screen 2 will populate these tables. These are both linked to the user_profile table via a user_id column. As shown in picture two the option to reference UserID is unavailable. How do I tell flutterflow to reference the same user account created on screen 1 and update the two tables with information from there so that everything is linked?

3 replies