ar.falsy.cat

Search

Search IconIcon to open search

flutter

Last updated Jun 29, 2023

# 概要

# 環境構築

# 豆知識

# ウィジェットツリー

# 画面遷移

1
2
3
4
5
6
7
8
9
// push (遷移後の画面がpopされるまでyield)
final ret = await Navigator.of(context).push(
  MaterialPageRoute(
    builder: (context) => Widget(),
  ),
);

// pop
Navigator.of(context).pop("hello");