daichikuwa0618 / flutter-weather-app

Dummy Weather App Built with Flutter
1 stars 0 forks source link

Session11 #12

Closed github-actions[bot] closed 3 months ago

github-actions[bot] commented 4 months ago

スレッドブロック

時間のかかる処理を扱ってみましょう。

課題

動作イメージ

demo

ヒント

Dart の実行モデルはシングルスレッド・イベントループです。

そのため、そのままだと画面が固まってしまい CircularProgressIndicator は表示されません。

よって、このようにスレッドをブロックしてしまうような処理の場合は isolates を使用します。

参考資料