页面视图中的空白页面
flutter blank page in page view
我在 flutter 中有这个页面视图,我在第一页上看到一个空白页面,如何解决这个问题?
PageView.builder(
physics: new NeverScrollableScrollPhysics(),
itemCount: allDays.length,
controller: _pageController,
itemBuilder: ( context, int index) {
return index == 0 ? Container() : _listDay(index-1);
},
)
在 itemBuilder 中,您将返回索引 0 的空容器。由于索引是从零开始的,因此索引 0 是第一页。请尝试以下操作:
PageView.builder(
physics: new NeverScrollableScrollPhysics(),
itemCount: allDays.length,
controller: _pageController,
itemBuilder: ( context, int index) {
return _listDay(index);
},
)
我在 flutter 中有这个页面视图,我在第一页上看到一个空白页面,如何解决这个问题?
PageView.builder(
physics: new NeverScrollableScrollPhysics(),
itemCount: allDays.length,
controller: _pageController,
itemBuilder: ( context, int index) {
return index == 0 ? Container() : _listDay(index-1);
},
)
在 itemBuilder 中,您将返回索引 0 的空容器。由于索引是从零开始的,因此索引 0 是第一页。请尝试以下操作:
PageView.builder(
physics: new NeverScrollableScrollPhysics(),
itemCount: allDays.length,
controller: _pageController,
itemBuilder: ( context, int index) {
return _listDay(index);
},
)