TabBarView( controller: _controller, children: _tabValues.map((f) { return EasyRefresh( refreshFooter: ClassicsFooter( key: _footerKey, bgColor: Colors.white, textColor: Colors.red, moreInfoColor: Colors.red, showMore: true, noMoreText: '沒有數據了', moreInfo: "加載更多", // loadReadyText: "加載中", // 上拉加載 ), child: ListView( // 內容主體部分 children: [ cardBoxList() ], ), loadMore: () async { _loadData(); }, ); }).toList(), ),