LoginSignup
0
0

More than 1 year has passed since last update.

bottom navigatorでページを切り替えすぎたらエラーが出てきた

Posted at

解決策

// setState()を防ぐため
if (!this.mounted) {return;}
setState(() {
});

エラー内容
[ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: setState() called after dispose()

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0