LoginSignup
4
1

More than 1 year has passed since last update.

Flutterで画面を再描画する方法

Posted at

シンプルに画面自身を呼び出せばOKです。

Navigator.pushReplacement(
    context,
    MaterialPageRoute(
        builder: (BuildContext context) => super.widget)
);

画面全体を再描画したいのに、値を再描画する方法ばかりでこれじゃないんだよなぁぁぁぁってずっとなってたので忘備録のために残します

誰かの参考になれば幸いです。

4
1
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
4
1