摘要:
1、 import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; class Todo { final String title; final String description; Todo(t 阅读全文
摘要:
PushAndRemove Navigator.pushAndRemoveUtil,Navigator.pushNamedAndRemoveUntil() 本例中我们的跳转顺序是Screen1—>Screen2—>Screen3—>Screen4 当从Screen3跳转到Screen4的时候我们希望 阅读全文
摘要:
路由最基本的使用-页面跳转和退出 使用Navigator.push()来跳转页面 onPressed: () { Navigator.push( context, MaterialPageRoute(builder: (context) => SecondRoute()), ); } 使用Navig 阅读全文