Isolates in Flutter | Dart Isolate Tutorial - Run tasks in background using Isolates | Multitasking

Поділитися
Вставка
  • Опубліковано 25 тра 2023
  • Perform multitasking using Dart Isolates at ease
    👩‍💻Source Code: github.com/vijayinyoutube/iso...
    ------------------------------------------------
    👉 Visit my channel for more awesome Flutter contents... ‪@vijaycreationsflutter‬
    👉 Join this channel to get access to perks: / @vijaycreationsflutter
    ------------------------------------------------
    ✔ Published Apps: (available in play store)
    play.google.com/store/apps/de...
    ------------------------------------------------
    ✔ Flutter Bloc: • Bloc
    ✔ Flutter & Firebase: • FireBase
    ✔ Flutter Animations: • Animations
    ✔ Flutter Widgets: • Flutter Widgets
    ✔ Flutter Packages: • Package Explore
    ✔ General: • General
    ✨ App UI Templates:
    Pinterest: / flutter
    🎨 Portfolio:
    vijayr-live.web.app
    🌏 Follow me on:
    Instagram: / vijaycreations_for_flu...
    Discord: / discord
    Twitter: / vijaycreations
    Medium: / vijay
    GitHub: github.com/vijayinyoutube
    📧 For business inquiries:
    mail to: calico.takeoff_01@icloud.com
    ⚡ Subscribe for more content:
    vijaycreations: / @vijaycreationsflutter
    If you found this video useful and wish to support my work,
    you can consider buying me a coffee.👇
    → www.buymeacoffee.com/vijaycre...
    → www.paypal.com/paypalme/iamVi...
    #flutter #flutterapp #appdevelopment #fluttertutorial #apps #mobileapp #developer #appdevelopment #flutterpackage #appdevelopers #android #ios #appdeveloper #flutterui #ui #ux #uiux #design #crossplatform #hybrid #hybridappdev #fluttertutorialforbeginners #beginners #animation #animations #notification #tutorial #tutorials #education #androidapp #dart #mobileprogramming #100daysofcode #appdesign #webdesign #webdeveloper #webdevelopment #webapp #application #software #softwaredeveloper #softwaredevelopment #softwareengineer #tutorialyoutube #youtubeshorts #youtubeeducation #course #courses #designs
  • Наука та технологія

КОМЕНТАРІ • 8

  • @mageshk1849
    @mageshk1849 6 днів тому +1

    A crystal clear explanation which i needed 👏

  • @harisbashir2719
    @harisbashir2719 Рік тому +2

    I hava a scenio in udemy like app in which i have to post a large size video .But it will hang the UI .I think isolate is good for this scenario .As per my knowledge their is a high level isolate API( compute() ) finction .That will take care of spawn run and other things .We just have to give our finction .

  • @sivanandamrajavelu4104
    @sivanandamrajavelu4104 Рік тому +1

    Very nice tutorial to understand the concept of isolates.... if apps goes in to the background or in active if the task will continue its work ?

  • @dj.yacine
    @dj.yacine Рік тому +1

    Can we use it with http package to make requests and get big response?

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

      Since isolates run on its own event loop, it is not recommended using it for basic api calls. As isolates are isolated, the subsequent code may not wait for response data. So it is sufficient to make use of Futures to do the same task concurrently rather than going for parallelism.

  • @jafarrezazadeh846
    @jafarrezazadeh846 Рік тому +1

    is it work even
    we close the app?