1

设想

有两个页面,第一页是 HomePage,它在 flutter_bloc 包的帮助下自动获取 api 数据。在主页(第一页)中,还有一个按钮可以在此代码的帮助下转到第二页(设置页面)Navigator.push(context, MaterialPageRoute(builder: (BuildContext context) => SettingsPage()));。在第二页中,底部有 3 个单选按钮和一个按钮(按钮名称为保存)。当我点击保存按钮时,它会在这段代码的帮助下返回主页Navigator.pop(context);

问题

当我选择任何单选按钮并单击底部的按钮时,我如何刷新或重建主页并再次获取 api 数据。

4

3 回答 3

1

您可以将主页的 bloc 实例传递给设置页面 bloc,然后当您按下保存或更改设置中的选项时,在主页 bloc 中触发一个事件,该事件会获取更新的数据并发出导致主页块输出流。

于 2020-02-12T19:12:50.943 回答
0
// Sample code 

'import 'package:flutter/material.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(),
    );
  }
}

EdgeInsets globalMargin =
const EdgeInsets.symmetric(horizontal: 20.0, vertical: 20.0);
TextStyle textStyle = const TextStyle(
  fontSize: 100.0,
  color: Colors.black,
);

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int number = 0;

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text('SO Help'),
      ),
      body: new Column(
        children: <Widget>[
          new Text(
            number.toString(),
            style: textStyle,
          ),
          new GridView.count(
            crossAxisCount: 2,
            shrinkWrap: true,
            scrollDirection: Axis.vertical,
            children: <Widget>[
              new InkResponse(
                child: new Container(
                    margin: globalMargin,
                    color: Colors.green,
                    child: new Center(
                      child: new Text(
                        "+",
                        style: textStyle,
                      ),
                    )),
                onTap: () {
                  setState(() {
                    number = number + 1;
                  });
                },
              ),
              new Sub(this),
            ],
          ),
        ],
      ),
      floatingActionButton: new FloatingActionButton(
        onPressed: () {
          setState(() {});
        },
        child: new Icon(Icons.update),
      ),
    );
  }
}

class Sub extends StatelessWidget {

  _MyHomePageState parent;

  Sub(this.parent);

  @override
  Widget build(BuildContext context) {
    return new InkResponse(
      child: new Container(
          margin: globalMargin,
          color: Colors.red,
          child: new Center(
            child: new Text(
              "-",
              style: textStyle,
            ),
          )),
      onTap: () {
        this.parent.setState(() {
          this.parent.number --;
        });
      },
    );
  }
}
于 2020-12-03T11:20:17.897 回答
0

在第一页的onPressed函数中使用此代码

Navigator.of(context).push(new MaterialPageRoute(builder: (_)=>new PageTwo()),)
    .then((val)=>val?_getRequests():null),

将 的值更改为_getRequestAPI 调用,将第二页更改为下一页。

于 2021-03-09T11:03:53.393 回答