NoCode Chat App with FlutterFlow and Supabase (Part 9)

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024
  • НаукаНаука

Комментарии • 22

  • @pierremusa9678
    @pierremusa9678 5 месяцев назад

    I have great confidence that we will continue to learn great things on this channel. It has already started!! Keep going with Flutterflow and Supabase 🥳

    • @just_xolotl
      @just_xolotl  5 месяцев назад

      Thank you! Will do! 👍

  • @muslimwa
    @muslimwa 3 месяца назад +1

    شكرا علي مجهودك والمساعدة الي قدمتها لينا حقيقي مجهود قوي جدا

    • @just_xolotl
      @just_xolotl  3 месяца назад +1

      thank you very much :)

  • @ymeshulin
    @ymeshulin 5 месяцев назад +2

    Loving the series, very well done!
    I am currently building something where I need this very functionality - not in the chat context, but pulling a list of rows from Supabase, offering an opportunity to select some of them and add to a list. I wonder if FlutterFlow will ever introduce a more straightforward solution to the problem, but if you grasp the logic shown by you, it's not that difficult.
    Actually, I would not mind videos to be 30-40 minutes long, if the complexity of the task so dictates. Splitting a topic like today's into two episodes might suit some, but for learning a more complete episode may actually be more efficient.

    • @just_xolotl
      @just_xolotl  5 месяцев назад

      Thanks really means the world to me to hear the appreciation and know that I managed to help someone! As for long form videos, I will definitely consider them in the future. Thanks!

  • @vansh4519
    @vansh4519 4 месяца назад

    I'm from India, Nice playlist bro carry on ❤

  • @markh-thai
    @markh-thai 5 месяцев назад

    Awesome, Thanks for Video. 😊

  • @zaidalobeidy4844
    @zaidalobeidy4844 5 месяцев назад

    I have confused about select chat_members whats is the (checked Items (list)) widget . and how you select the state of user ?

    • @just_xolotl
      @just_xolotl  5 месяцев назад

      So this basically contains which members the user has selected. And we can then get the uids of the selected members and put them into a list of uids which we would then store into supabase under chat_members

    • @zaidalobeidy4844
      @zaidalobeidy4844 5 месяцев назад

      @@just_xolotl thx about ur replay .i know how its work but i meant how it list under widget state

    • @just_xolotl
      @just_xolotl  5 месяцев назад

      @@zaidalobeidy4844 oh I see. It’s just that the Flutterflow has this function to remember which items have been checked and we are able to access the items as a list. 👍

    • @zaidalobeidy4844
      @zaidalobeidy4844 5 месяцев назад

      @@just_xolotl thanks bro 👍👍

  • @blankplusblank
    @blankplusblank 4 месяца назад

    What is the benefit of using an API call rather than a query?

    • @just_xolotl
      @just_xolotl  4 месяца назад +1

      In this case we’re using my the ilike operator for a better search. (Ie if you search a part of a name, it will still show up in the result.) if you simply use FF’s query, you will only get results when the search string is exactly the same as the thing you’re searching for

    • @blankplusblank
      @blankplusblank 4 месяца назад

      Ahh! Brilliant

    • @Evan-yp3oz
      @Evan-yp3oz 4 месяца назад

      @@just_xolotlwhen joining data from multiple supabase tables, do you recommend creating a view within supabase or what?

    • @just_xolotl
      @just_xolotl  4 месяца назад

      ​@@Evan-yp3oz yup you should create a view. It'll make accessing it much easier in flutterflow

  • @seby5962
    @seby5962 Месяц назад

    11:37 Please don't use a column, where many chat members are stored. In a bigger database with many users, this would slow down your database, when searching for a specific member. Please use a many to many relationship, which would solve this problem. Thats why we are using a SQL Backend, and not a noSQL backend. Your are trying to paste a noSQL solution into a SQL Backend...

    • @just_xolotl
      @just_xolotl  Месяц назад

      Yup totally agree with you. When I made this video, I was not yet experienced with database architecture. But now I understand the relations better and will use this way in future tutorials. Thanks!