Flutter Flow - Dynamic DropDown Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

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

  • @krypto1530
    @krypto1530 ปีที่แล้ว +7

    Don't listen to comment below! We appreciate you trying to help even though you prefer your voice not to be heard online. Thanks this was really helpful video, keep it up

    • @JimExplains
      @JimExplains  ปีที่แล้ว +1

      Thanks for the support !:)

    • @RedCloudServices
      @RedCloudServices ปีที่แล้ว

      what do you recommend if there is a bigger tree structure for conditional dropdowns? can flutterflow provide an api for list values?

    • @krypto1530
      @krypto1530 ปีที่แล้ว

      @@RedCloudServices standard setup would apply, you should try asking chat GPT with more specifics on what you're trying to do

    • @RuchiMittal-ts7bo
      @RuchiMittal-ts7bo ปีที่แล้ว

      Error updating Firestore Security Rules...
      Make sure you set up Firebase for your project under "Settings" > "Firebase".
      give me any solution plz

  • @ayrtonfarias9225
    @ayrtonfarias9225 ปีที่แล้ว +1

    Excellent tutorial, Jim. Thanks, and congratulatios. Looking forward to watching more tutorials as clear as this one. I wish you all the best!

  • @mincraftpe2951
    @mincraftpe2951 5 หลายเดือนก่อน +1

    6:13
    To ignore that issue you can add action on second dropdown menu
    1- add acttion
    2- select on data change
    3- serch rest form fields on actions menu
    4- select dropdown menu to be cleared second one

  • @charlesabju907
    @charlesabju907 ปีที่แล้ว +1

    7:47 the second dropdown is INVINCIBLE

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

    Thanks for this tutorial, you save my life!!!

  • @ru-cefetmg
    @ru-cefetmg 11 หลายเดือนก่อน

    Thank you very much!!! I wasn't understanding how to do it, but you explained it very well, thank you!!

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

    very good tutorial , thanks

  • @nkofr
    @nkofr ปีที่แล้ว +6

    Nice. Do you know if it's possible to bind data so that we can retrieve an ID from the dropdown list, that would be useful, for example if the app is multilanguage

  • @Dobbiy
    @Dobbiy 10 หลายเดือนก่อน +1

    I loved the video, I was trying to do that... But I ended up not doing it your way because the list was too simple to have to require the backend (this can overload the server for silly things).
    So far I haven't seen anyone teach how to do it without a backend, but I managed to do it here. using a normal dropdown
    1. Create state of type string and list (cars list) and didn't add anything to it, then I put the "Dynamic DropDown" to have the list according to the string (cars list), whatever is in the string is in the list!!!
    2. Create the lists in new states of type string and list each with a different list (State Audi: car1, car2...) (State Ford: car1, car2...).
    3. Add what you want to the list in the first dropdown normally (in this case audi and ford)
    4. Add a Conditional Action if ("First Dropdown" == "audi") update the state string "cars list" to state string "Audi"
    And that should make the second list dynamic

    • @reatcas
      @reatcas 13 วันที่ผ่านมา

      DO you recommend do the same for geogrpahic locations? I'm building a database structure like this but with continents, regions, countries, states, cities, villages and zones. Is it better to use a backend for this or is it better to put all the data in the app files?

    • @Dobbiy
      @Dobbiy 13 วันที่ผ่านมา

      @@reatcas I think it's better on the server (backend), because it's a lot of information, I think it can make the application heavier to load so much data.

  • @williamsalazar2624
    @williamsalazar2624 9 หลายเดือนก่อน +1

    Thanks. How to cascading two dropdown using a local list to reduce query to database?

  • @andreasfun9591
    @andreasfun9591 5 หลายเดือนก่อน +1

    Is there a way to implement dynamic dropdowns without using Firestore/Firebase?

  • @zeuski117
    @zeuski117 ปีที่แล้ว

    Friend, thank you very much, I appreciate it so much, you just saved me many hours of work, I was doing the same as you but I did not add the conditions correctly.

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

    Thanks exemple: 10 is to many for drowdown ?

  • @Lambs-sx7hp
    @Lambs-sx7hp 8 หลายเดือนก่อน +2

    when i click on item in list it doesnt say out only get documentsproperty or has field

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

      Did you find a solution to this, im having the same issue

    • @Lambs-sx7hp
      @Lambs-sx7hp 7 หลายเดือนก่อน

      @@stanleystanyer no i didnt

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

      Same here help

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

    thanks you!

  • @Lambs-sx7hp
    @Lambs-sx7hp 8 หลายเดือนก่อน +1

    and another issue when i click my drop down bo the name doesnt show it shows [campus_dd Documents -> output 0] not the name anyhelp

  • @rafaelosiris
    @rafaelosiris 11 หลายเดือนก่อน

    how to do this but with ApiCalls. Because the api calls don't have widget and the workoround is very complicated.

  • @PropiedApp
    @PropiedApp 10 หลายเดือนก่อน

    That was exactly what I needed!, thank you so much!
    I wonder if you also know the solution for this:
    Since I have several documents (some are the same car brand) the options for "FORD" in the drop down are repeated several times, do you know how I can make each brand appear only once?
    I was looking for some kind of filter or "do not repeat" function but I can't find anything like that

  • @StivenOchoa
    @StivenOchoa 11 หลายเดือนก่อน +2

    How its works for a dropdown where the selected option its a document reference? for example, i have a collection called states and i need asigned to a product on products collection, where state field its a document reference

    • @reatcas
      @reatcas 13 วันที่ผ่านมา

      I have te same issue

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

    thank you

  • @threesentertainment
    @threesentertainment ปีที่แล้ว +1

    Thank You Brother

  • @mrgolddd
    @mrgolddd ปีที่แล้ว

    Can you make this tutorial with superbase?

  • @matlarasta
    @matlarasta ปีที่แล้ว

    Hey Is it multilangue friendly ?

  • @KashMobileGuru
    @KashMobileGuru 10 หลายเดือนก่อน

    How to get unique in dropdown list?

  • @VRGPRODUCAO
    @VRGPRODUCAO ปีที่แล้ว +1

    Thanks.

  • @RuchiMittal-ts7bo
    @RuchiMittal-ts7bo ปีที่แล้ว

    Error updating Firestore Security Rules...
    Make sure you set up Firebase for your project under "Settings" > "Firebase". show error while manage content ....plz give me solution

    • @ghazi1832
      @ghazi1832 9 หลายเดือนก่อน

      i had the same, and ii went settings/firebase/setupfirebase project and other options thats it

  • @RYONPAK
    @RYONPAK ปีที่แล้ว

    Thanks!

  • @salahmohamed5678
    @salahmohamed5678 ปีที่แล้ว

    thank you ^^

  • @sanchesborger
    @sanchesborger 9 หลายเดือนก่อน

    Parabéns.

  • @compuchispas
    @compuchispas ปีที่แล้ว

    Thanks

  • @AtomicPixels
    @AtomicPixels ปีที่แล้ว +1

    This is what happens when arnold gets denied for the next terminator role after a monotonous Ai takes his seat for $.0021 per take.

  • @mugiirakamundi5172
    @mugiirakamundi5172 11 วันที่ผ่านมา

    Thank you