Fluttering Dart

Fluttering Dart: Futures and Isolates

How to overcome the single-thread downside

Constantin Stan
Level Up Coding
Published in
4 min readDec 15, 2019

--

Photo by Createria on Unsplash

Dart is single-threaded. That means that all of our application code runs in the same thread. Unfortunately, our code might block the single thread execution if it runs very time-consuming operations like HTTP requests.

Futures

--

--