Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

compute flutter

Dart is a single threaded language, but it comes with a handy compute function 
to spawn isolates. In a nutshell, the compute function is useful for doing 
extra work on a different "thread"--it's actually an isolate--so your flutter 
app does not experience "jank". Jank occurs when the UI doesn't render smoothly.
 
PREVIOUS NEXT
Tagged: #compute #flutter
ADD COMMENT
Topic
Name
7+3 =