มีสองสามสิ่งที่คุณสามารถทำได้ที่นี่ คำตอบของ @ Mahi ในขณะที่ถูกต้องอาจกระชับกว่าเล็กน้อยและใช้ push มากกว่า showDialog ตามที่ OP กำลังถาม นี่คือตัวอย่างที่ใช้Navigator.push
:
import 'package:flutter/material.dart';
class SecondPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Container(
color: Colors.green,
child: new Column(
children: <Widget>[
new RaisedButton(
onPressed: () => Navigator.pop(context),
child: new Text("back"),
),
],
),
);
}
}
class FirstPage extends StatefulWidget {
@override
State<StatefulWidget> createState() => new FirstPageState();
}
class FirstPageState extends State<FirstPage> {
Color color = Colors.white;
@override
Widget build(BuildContext context) {
return new Container(
color: color,
child: new Column(
children: <Widget>[
new RaisedButton(
child: new Text("next"),
onPressed: () {
Navigator
.push(
context,
new MaterialPageRoute(builder: (context) => new SecondPage()),
)
.then((value) {
setState(() {
color = color == Colors.white ? Colors.grey : Colors.white;
});
});
}),
],
),
);
}
}
void main() => runApp(
new MaterialApp(
builder: (context, child) => new SafeArea(child: child),
home: new FirstPage(),
),
);
อย่างไรก็ตามมีอีกวิธีในการทำเช่นนี้ที่อาจเข้ากับกรณีการใช้งานของคุณได้ดี หากคุณใช้global
เป็นสิ่งที่มีผลต่อการสร้างหน้าแรกของคุณคุณสามารถใช้InheritedWidgetเพื่อกำหนดการตั้งค่าผู้ใช้ทั่วโลกของคุณและทุกครั้งที่มีการเปลี่ยนแปลง FirstPage ของคุณจะสร้างใหม่ สิ่งนี้ยังใช้งานได้ภายในวิดเจ็ตไร้สถานะดังที่แสดงด้านล่าง (แต่ควรทำงานในวิดเจ็ตที่มีสถานะเช่นกัน)
ตัวอย่างของ inheritWidget ในการกระพือปีกคือ Theme ของแอปแม้ว่าพวกเขาจะกำหนดมันภายในวิดเจ็ตแทนที่จะสร้างโดยตรงอย่างที่ฉันมีที่นี่
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
class SecondPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Container(
color: Colors.green,
child: new Column(
children: <Widget>[
new RaisedButton(
onPressed: () {
ColorDefinition.of(context).toggleColor();
Navigator.pop(context);
},
child: new Text("back"),
),
],
),
);
}
}
class ColorDefinition extends InheritedWidget {
ColorDefinition({
Key key,
@required Widget child,
}): super(key: key, child: child);
Color color = Colors.white;
static ColorDefinition of(BuildContext context) {
return context.inheritFromWidgetOfExactType(ColorDefinition);
}
void toggleColor() {
color = color == Colors.white ? Colors.grey : Colors.white;
print("color set to $color");
}
@override
bool updateShouldNotify(ColorDefinition oldWidget) =>
color != oldWidget.color;
}
class FirstPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
var color = ColorDefinition.of(context).color;
return new Container(
color: color,
child: new Column(
children: <Widget>[
new RaisedButton(
child: new Text("next"),
onPressed: () {
Navigator.push(
context,
new MaterialPageRoute(builder: (context) => new SecondPage()),
);
}),
],
),
);
}
}
void main() => runApp(
new MaterialApp(
builder: (context, child) => new SafeArea(
child: new ColorDefinition(child: child),
),
home: new FirstPage(),
),
);
หากคุณใช้วิดเจ็ตที่สืบทอดมาคุณไม่ต้องกังวลกับการดูป๊อปของหน้าที่คุณผลักดันซึ่งจะใช้ได้กับกรณีการใช้งานพื้นฐาน แต่อาจพบปัญหาในสถานการณ์ที่ซับซ้อนมากขึ้น