gpt4 book ai didi

dart - 如何在返回上一屏幕时捕捉值(value)?

转载 作者:IT王子 更新时间:2023-10-29 07:21:00 25 4
gpt4 key购买 nike

这是我的第二堂课

class SecondClass extends StatefulWidget {
_SecondClassState createState() => _SecondClassState();
}

class _SecondClassState extends State<SecondClass> {
@override
Widget build(BuildContext context) {
Return Container(
RaisedButton(
onPressed: Navigator.of(context).pop('lorem ipsum),
child: Text('Back and get data')
)
);
}
}

这是我的第一个类

class FirstClass extends StatefulWidget {
_FirstClassState createState() => _FirstClassState();
}

class _FirstClassState extends State<FirstClass> {
@override
Widget build(BuildContext context) {
Return Container(
// show data here
);
}
}

如何获取 lorem ipsum 的字符串并将其显示在第一类中,我应该将代码放在哪里以获取该字符串?

最佳答案

enter image description here

您可以在屏幕截图中看到,无论在第二个屏幕中单击什么项目,它都会被发送回页面 1,并且 Button 会显示相同的项目。


这是基本实现的完整代码。

void main() {
runApp(MaterialApp(home: Page1()));
}

class Page1 extends StatefulWidget {
@override
_Page1State createState() => _Page1State();
}

class _Page1State extends State<Page1> {
String _response = "";

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Page 1")),
body: Center(
child: RaisedButton(
child: Text("Go to Page 2"),
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (context) => Page2())).then((value) {
setState(() {
_response = value; // you receive here
});
});
},
),
),
);
}
}

class Page2 extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Page 2")),
body: ListView.builder(
itemCount: 20,
itemBuilder: (c, i) {
return ListTile(
title: Text("Item ${i}"),
onTap: () {
Navigator.pop(context, "Item ${i}"); // what you pass here
},
);
},
),
);
}
}

关于dart - 如何在返回上一屏幕时捕捉值(value)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55646998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com