How to create user favourites in Flutterflow

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024

ความคิดเห็น • 22

  • @hakonulven9481
    @hakonulven9481 4 หลายเดือนก่อน +2

    Thank you so much for this. Really helpful. After watching the video 5 times I got it to work like a charm! Some adjustments, but everything flawless. Seen a lot of your youtube ads, hope that helps!

  • @danzreview
    @danzreview 6 หลายเดือนก่อน +1

    that was cool continue more supabase and flutterflow you are the best

  • @Gab-mf6xq
    @Gab-mf6xq 7 หลายเดือนก่อน +1

    Oh wow can’t wait to watch this!!!!

  • @Gab-mf6xq
    @Gab-mf6xq 6 หลายเดือนก่อน +1

    Thanks again for this video. It was very very helpful.

  • @jimvh7557
    @jimvh7557 7 หลายเดือนก่อน +2

    Great video! Still looking for a decent example on how to use push notifications based on Supabase database changes. Do you happen to have a clue?

    • @onedayapp3534
      @onedayapp3534 4 หลายเดือนก่อน

      This would be great

  • @vacationhomegroup
    @vacationhomegroup 3 หลายเดือนก่อน

    Awesome, I think this is just what I needed for my project. Question... If a job description is updated (say salary change), how would I go about notifying everyone that has saved the job?

  • @onedayapp3534
    @onedayapp3534 4 หลายเดือนก่อน

    If they delate the app and install again, would the app state be deleted?

  • @jimvh7557
    @jimvh7557 23 วันที่ผ่านมา

    I can't seem to get the RPC calls to work. None of them. Not sure why. Is a requirement not shown in the video maybe?

    • @rapidmvp
      @rapidmvp  23 วันที่ผ่านมา

      @@jimvh7557 when you run it in test mode press F12 to open the developer console and see what errors you are getting. Also check your RLS policies in Supabase, you can always disable RLS for testing purposes.

    • @jimvh7557
      @jimvh7557 23 วันที่ผ่านมา

      @@rapidmvp I always get raw respons [] and missing favourites (the 2 print statements from the getFavourite custom action). Can I see logs in SB? I don't have RSL on that table but I do have it cascading from auth.users in terms of when auth.user Is deleted the user is also deleted from my userdetails table. Your Id field in your users table is what type? I guess uuid? Can't see that in the video.

    • @jimvh7557
      @jimvh7557 23 วันที่ผ่านมา +1

      Seems it was RLS after all. I overlooked it. Checked and unchecked it and now it loads the favs! Tx!

  • @elizabethpenn06
    @elizabethpenn06 2 หลายเดือนก่อน

    Is there a video of you building the job board from scratch?

    • @rapidmvp
      @rapidmvp  2 หลายเดือนก่อน

      No. I have used it for a few examples but never recorded myself building it.

    • @elizabethpenn06
      @elizabethpenn06 2 หลายเดือนก่อน

      Thanks for the response!! I’m just having a lot of trouble building my Subcollection. I can’t figure out how to add content. I would have like 100 rows to add and would like to upload a file

  • @Gab-mf6xq
    @Gab-mf6xq 7 หลายเดือนก่อน

    if you weren't dealing with JSON, would it be much easier? The JSON stuff adds a layer of complexity that isn't straight forward to strip away. e.g. would you need to use app state if you weren't dealing with JSON?

    • @rapidmvp
      @rapidmvp  7 หลายเดือนก่อน +1

      Great point on the json. I decided that a local state was the best way to control the page view based on user actions. So I could have had a page state for that, when the json would have been problematic. Mapping the values to an app state in the custom action, removed the issue and I honestly didn’t consider the json after that point.
      Returning an array of integers from Supabase would be another, possibly easier way, but I would still stick with a local state for how the elements on the page change. Just my preference I think. 👍

  • @pierremusa9678
    @pierremusa9678 7 หลายเดือนก่อน +1

    Great stuff !!👏I really like the content on your TH-cam channel. Would it be possible to have a paid premium section, in which we could clone your flutterflow application, and especially see step by step how you built your database with Supabase?

    • @rapidmvp
      @rapidmvp  7 หลายเดือนก่อน +2

      Thanks for the comment. At the moment I’m just concentrating on making these videos. Plenty of room for improvements before I think about anything else!

    • @pierremusa9678
      @pierremusa9678 7 หลายเดือนก่อน

      @@rapidmvp All good 😊

  • @Gab-mf6xq
    @Gab-mf6xq 6 หลายเดือนก่อน

    How do you get the list of favourites on the homepage as a list? do you call directly from the array in supabase or you call it somehow from the appstate?

    • @rapidmvp
      @rapidmvp  6 หลายเดือนก่อน +1

      I have a Supabase query on a ListView, filtered where the id is contained within the app state. When the user clicks the star to add or remove a favourite the view refreshes based on the new contents of the app state variable