Flutter DropdownButton Widget

Поділитися
Вставка
  • Опубліковано 2 лис 2024

КОМЕНТАРІ • 13

  • @arupnaskarbkp
    @arupnaskarbkp 2 роки тому +31

    Thumbnail and video not same.. pls add proper Thumbnail

  • @kal.
    @kal. Рік тому +15

    that thumbnail was clickbait. please do proper design like the thumbnail

  • @M37Shadow
    @M37Shadow Рік тому

    i become so happy when i find the thing am looking for in this channel ♥

  • @abduiron9648
    @abduiron9648 Рік тому +8

    What is the thumbnail and what is the video ? Come one bro.

  • @ahmadizaz2583
    @ahmadizaz2583 5 місяців тому

    Thumbnail 😂😂

  • @joshuanwokoye
    @joshuanwokoye 6 місяців тому

    Thumbnail in the video is misleading

  • @aouadicharaf1038
    @aouadicharaf1038 8 місяців тому

    ♥♥♥

  • @dramaticsports
    @dramaticsports 2 роки тому

    If we have a list of cities how to assign list to items:

    • @TechBuddy_
      @TechBuddy_ 2 роки тому +4

      There are options
      if you already have a list of elements then use list.map((e) => DropDownMenuItem(
      value: e,
      child: Text(e),
      )).toList()
      Or another option would be
      ...
      items: [
      for (int i = 0; i < 20; i++)
      DropDownMenuItem(
      value: i,
      child: Text("Item $i"),
      ),
      ],
      ...
      It's upto you to chose one

    • @dramaticsports
      @dramaticsports 2 роки тому +1

      @@TechBuddy_ thank you bro 🥰