Flutter Tutorial - Drag And Drop File Upload | Drop Files Into Dropzone

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

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

  • @HeyFlutter
    @HeyFlutter  2 года назад

    This might help you :)
    👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com
    Source Code: github.com/JohannesMilke/dropzone_example
    Upload File To Firebase Storage Tutorial: ruclips.net/video/dmZ9Tg9k13U/видео.html
    Download File From Firebase Storage Tutorial: ruclips.net/video/YA_fHCF_EYc/видео.html
    Hive NoSQL Database Tutorial: ruclips.net/video/w8cZKm9s228/видео.html
    SQFlite SQL Database Tutorial: ruclips.net/video/UpKrhZ0Hppk/видео.html
    Drag & Drop Widgets Tutorial: ruclips.net/video/Bc0qB1jtHBk/видео.html
    Drag & Drop In ListView Tutorial: ruclips.net/video/HmiaGyf55ZM/видео.html
    Drag & Select In GridView Tutorial: ruclips.net/video/DozNBmc79L4/видео.html
    Draggable Modal Bottom Sheet Tutorial: ruclips.net/video/AjAQglJKcb4/видео.html
    Draggable Scrollable Sheet Tutorial: ruclips.net/video/za9Jo99ag2g/видео.html
    Flutter Upgrade Tutorial: ruclips.net/video/0QC7S1nUmpY/видео.html
    QR Code Scanner Tutorial: ruclips.net/video/hHehIGfX_yU/видео.html
    Barcode Scanner Tutorial: ruclips.net/video/jkqR7CSeyNs/видео.html
    Google SignIn With Firebase Tutorial: ruclips.net/video/1k-gITZA9CI/видео.html
    Fix Bottom Overflowed By Pixels Tutorial: ruclips.net/video/voARoVV_EDI/видео.html
    Flutter Layout Basics Tutorial: ruclips.net/video/yYxueTNIDlA/видео.html
    Create Invoice PDF Document Tutorial: ruclips.net/video/z_5xkhEkc5Y/видео.html

  • @heyhey_candra
    @heyhey_candra 3 года назад +3

    a lovely tutorial. this is just what I need. sensational.

  • @PaulMcKillop
    @PaulMcKillop 3 года назад

    Brilliant, Johannes.

  • @freakout6764
    @freakout6764 3 года назад +1

    Another awesome video i learn a new thing 😁

  • @h3w45
    @h3w45 3 года назад

    Thanks for covering this.

  • @idlevandal69
    @idlevandal69 3 года назад

    Another exceptional tutorial... Thank you... 🏆

  • @shivamrathore8009
    @shivamrathore8009 3 года назад

    Awesome brother. Expecting a lot of good content from you in the future..

  • @Playerofplayconsole
    @Playerofplayconsole 3 года назад +1

    Respect Sir ji
    i have questions that
    Fast time open to RUclips
    Show (dialog) after video (data)
    Them
    Click search icon in RUclips
    Back to go home page
    But
    This time not show (dialog)
    Direct show (videos)data
    How can do it
    Use (like ..stream builder... future Builder) your choice

  • @bernardang5660
    @bernardang5660 3 года назад

    hello, By any chance, can this work with multiple files, as long as displaying details of those multiple files

    • @peterirving9458
      @peterirving9458 Год назад

      hey Bernard, did you get anywhere with this?

  • @curetothecommoncode5921
    @curetothecommoncode5921 2 года назад

    yo love the video! thanks for the knowledge share, keep it up!

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thank you, CuretotheCommonCode! 🙂

  • @abubakernawaz625
    @abubakernawaz625 3 года назад

    Awesome video keep it up

  • @inU_music
    @inU_music 3 года назад

    Awesome video, where do you put Firebase Upload Code please?

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thank You INU Music! Follow this link: github.com/sponsors/JohannesMilke
      I hope you will get your answer 🙂

  • @whoadityanawandar
    @whoadityanawandar Год назад

    Would this work on mobile?

    • @HeyFlutter
      @HeyFlutter  Год назад

      Thank you, whoadityanawandar! 🙂. Yes it will.

  • @stickman4098
    @stickman4098 2 года назад

    can I only allow to upload one file

  • @hashankannangara8723
    @hashankannangara8723 3 года назад

    Thats awsome ❤️

  • @mgmyo7066
    @mgmyo7066 3 года назад

    please make a video of responsive design

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thank you, ! 🙂👍 Check out this video about
      Responsive UI Text Layout - Auto Size Text
      ruclips.net/video/0O_qDZ48F7o/видео.html
      Flutter Web Chat UI With StreamChat Response Web App 3/3
      ruclips.net/video/zjfJaicmLSI/видео.html

  • @Sj-rj5pp
    @Sj-rj5pp 3 года назад

    Sir how to convert it into a file object so that I can upload it on firebase storage?

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thanks, Sj! 🙂 You can simply upload it with Firebase Storage. Learn more about it here: ruclips.net/video/dmZ9Tg9k13U/видео.html
      Simply upload the file like this:
      final html.File file = YOUR_FILE_HERE;
      FirebaseStorage.instance.ref('...').putBlob(file);

    • @ferrari.nikita33
      @ferrari.nikita33 2 года назад

      @@HeyFlutter did you try that? It seems that putBlob isnt supported on native platforms
      UnimplementedError: putBlob() is not supported on native platforms
      In order to get it to work you need to convert the blob or the file, how you like to name it, to an Uint8List and simply pass that in the putData() method

  • @shivasundarabalajijm6639
    @shivasundarabalajijm6639 2 года назад

    I drag mulipe file to drop. show only the last file how to show all file in preview page

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thank You SHIVA SUNDARA BALAJI J M! Follow this link: pub.dev/packages/flutter_dropzone
      I hope you will get your answer 🙂

  • @SubodhKumar-mh7ni
    @SubodhKumar-mh7ni 2 года назад

    How to restrict for drop can accept only xlsx file.

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thank You Subodh Kumar! Follow this link: medium.com/flutter-community/a-deep-dive-into-draggable-and-dragtarget-in-flutter-487919f6f1e4
      I hope you will get your answer 🙂

  • @eNONO-ot4zh
    @eNONO-ot4zh 3 года назад

    Waouh. Thank 👍👍

  • @SteveBraich
    @SteveBraich Год назад

    I requested access to your code. I haven't received an email yet.

    • @HeyFlutter
      @HeyFlutter  Год назад

      Thank You @user-yg5wn3pl5l!. I showed the main functionality, which is important for this package. Learn more about it here: github.com/JohannesMilke/sponsorware

  • @jayamuruganj5091
    @jayamuruganj5091 3 года назад

    Pls make a simple video to run python script into flutter

  • @muhammadhammadkhan4184
    @muhammadhammadkhan4184 3 года назад

    How to change app icon android & iOS + web (top left corner) icon + desktop (if possible) in a next video .

  • @saratm9973
    @saratm9973 2 года назад

    I had already accessed and requested you but you don't respond it. Can you please share source code?

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thank You Sarat M!. I showed the main functionality, which is important for this package. Learn more about it here: github.com/JohannesMilke/sponsorware

  • @pritomchaki4461
    @pritomchaki4461 3 года назад

    how u upload videos, what I need? :)

    • @HeyFlutter
      @HeyFlutter  2 года назад

      Thanks, Pritom Chaki! 🙂Simply upload videos / images with Firebase Storage: ruclips.net/video/dmZ9Tg9k13U/видео.html