LoginSignup
0
2

More than 1 year has passed since last update.

【Flutter】全画面を削除し遷移する

Last updated at Posted at 2021-09-02

何度か画面遷移をした後にトップレベルの画面に戻す

Navigator.of(context).pushNamedAndRemoveUntil('/page', (_) => false,);

メソッド

条件を満たすまで画面を破棄し遷移するため, 条件部分でfalseを返している.

pushNamedAndRemoveUntil(
  '', //page
  (_) => false, //条件
)

参考 https://api.flutter.dev/flutter/widgets/Navigator/pushNamedAndRemoveUntil.html

0
2
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
2