解決策
// setState()を防ぐため
if (!this.mounted) {return;}
setState(() {
});
エラー内容
[ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: setState() called after dispose()
Go to list of users who liked
More than 1 year has passed since last update.
解決策
// setState()を防ぐため
if (!this.mounted) {return;}
setState(() {
});
エラー内容
[ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: setState() called after dispose()
Register as a new user and use Qiita more conveniently
Go to list of users who liked