颤振刷新两次重建childwidget

时间:2019-08-15 11:28:14

标签: flutter

我有此代码

 RefreshIndicator(
            key: _refreshIndicatorKey,
            onRefresh: onrefreh,//don't do anything
            child: TodoPage())

和TodoPage喜欢

Widget build(BuildContext context) {
    print('tt');
    final todoBloc = TodoProvider.of(context);

    return Scaffold(
      appBar: AppBar(title: Text("Title")),
      body: Center(
        child: Column()
   ......
}

有时我什至触摸主页时,在bebugconsole上也可以看到两次“ tt”字符串,我认为refreshindicator使todoPage重建 当我绝对刷新时,我可以在调试控制台上看到两个“ tt”结果,为什么它们会重建两次?并且如果我只想一次肯定要滑动页面刷新的话

0 个答案:

没有答案