Make PageView.controller nullable
Summary
#If a controller isn't provided in the constructor, the controller
member is null
. This makes PageView
and its controller
property consistent with other widgets.
Migration guide
#Before:
dart
pageView.controller.page
After:
dart
pageView.controller!.page
Timeline
#Landed in version: 3.19.0-12.0.pre
In stable release: 3.22.0
References
#Relevant issues:
除非另有说明,否则本网站上的文档反映的是 Flutter 的最新稳定版本。页面最后更新于 2025-01-30。 查看源代码 或 报告问题。