LoginSignup
5
1

More than 5 years have passed since last update.

FlutterでIntent.FLAG_ACTIVITY_CLEAR_TOPてきなことをやる

Posted at

自分用めも

push/pop じゃないナビゲーションが使いたい

Androidだと Intent.FLAG_ACTIVITY_CLEAR_TOP とか使って実現するやつ。

Slice.png

pushAndRemoveUntilを使うといいらしい

    child: new FlatButton(
      onPressed: () {
        Route routeToTop = new MaterialPageRoute(builder: (context) => new FirstScreen(data: "OK from Confirmation:$data"));
        Navigator.of(context)
            .pushAndRemoveUntil(routeToTop, (route) => false);
      },    

screenshot

test.gif

参考

おためしソース

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