Flutter - 在 Provider 值更改时触发 PageView 更改
Flutter - Trigger PageView change on Provider value change
我有一个带有页面视图的自定义 BottomAppBar。当用户单击 BottomAppBar 中的项目时,我正在尝试更改页面。我正在使用 Provider 来管理全局状态。单击项目会触发提供程序中的值更改,但 PageView 中没有方法可以在值更改时触发页面更改。我怎样才能做到这一点?下面是我的代码。
我的提供商:
class CurrentPage extends ChangeNotifier {
int _currentPage = 0;
int get currentPage => _currentPage;
setCurrentPage(int val) {
_currentPage = val;
notifyListeners();
}
}
一个 BottomAppBar 项目:
InkWell(
onTap: () {
context.read<CurrentPage>().setCurrentPage(0);
},
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 26.5, vertical: 17.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Icon(
CustomIcons.home,
size: 18.0,
color: context.watch<CurrentPage>().currentPage == 0
? Color(0xFF2C1DEB)
: Color(0xFFCCCCD5),
),
SizedBox(height: 9.0),
Text(
'HOME',
style: TextStyle(
color: context.watch<CurrentPage>().currentPage == 0
? Color(0xFF2C1DEB)
: Color(0xFFCCCCD5),
fontWeight: FontWeight.w800,
fontSize: 10.0,
letterSpacing: 1.0,
),
),
],
),
),
),
浏览量:
class Pages extends StatelessWidget {
@override
Widget build(BuildContext context) {
final PageController _pageController =
PageController(initialPage: context.watch<CurrentPage>().currentPage);
return PageView(
onPageChanged: (int) {},
controller: _pageController,
scrollDirection: Axis.horizontal,
pageSnapping: true,
children: [
Container(
color: Colors.green,
child: Text('Home Page'),
),
Container(
child: Text('Profile Page'),
),
Container(
child: Text('Search Page'),
),
Container(
child: Text('Jobs Page'),
),
],
);
}
}
您应该在 PageViewController 中使用 animateToPage or jumpToPage 方法。您还需要使您的页面小部件 StatefullWidget。
这就是你可以做到的。一旦您从您的供应商处致电 notifyListener
,如果 currentPage
已更改,这将转到新选择的页面
class Pages extends StatelessWidget {
final PageController _pageController =
PageController(initialPage:0);
@override
Widget build(BuildContext context) {
return Consumer<CurrentPage>(builder:(ctx, currentPage, widget){
final pageView = PageView(
onPageChanged: (int) {},
controller: _pageController,
scrollDirection: Axis.horizontal,
pageSnapping: true,
children: [
Container(
color: Colors.green,
child: Text('Home Page'),
),
Container(
child: Text('Profile Page'),
),
Container(
child: Text('Search Page'),
),
Container(
child: Text('Jobs Page'),
),
],);
if(currentPage.currentPage != _pageController.page.floor()){
_pageController.jumpToPage(currentPage.currentPage);
}
return pageView;
}
);
}
}
我有一个带有页面视图的自定义 BottomAppBar。当用户单击 BottomAppBar 中的项目时,我正在尝试更改页面。我正在使用 Provider 来管理全局状态。单击项目会触发提供程序中的值更改,但 PageView 中没有方法可以在值更改时触发页面更改。我怎样才能做到这一点?下面是我的代码。
我的提供商:
class CurrentPage extends ChangeNotifier {
int _currentPage = 0;
int get currentPage => _currentPage;
setCurrentPage(int val) {
_currentPage = val;
notifyListeners();
}
}
一个 BottomAppBar 项目:
InkWell(
onTap: () {
context.read<CurrentPage>().setCurrentPage(0);
},
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 26.5, vertical: 17.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Icon(
CustomIcons.home,
size: 18.0,
color: context.watch<CurrentPage>().currentPage == 0
? Color(0xFF2C1DEB)
: Color(0xFFCCCCD5),
),
SizedBox(height: 9.0),
Text(
'HOME',
style: TextStyle(
color: context.watch<CurrentPage>().currentPage == 0
? Color(0xFF2C1DEB)
: Color(0xFFCCCCD5),
fontWeight: FontWeight.w800,
fontSize: 10.0,
letterSpacing: 1.0,
),
),
],
),
),
),
浏览量:
class Pages extends StatelessWidget {
@override
Widget build(BuildContext context) {
final PageController _pageController =
PageController(initialPage: context.watch<CurrentPage>().currentPage);
return PageView(
onPageChanged: (int) {},
controller: _pageController,
scrollDirection: Axis.horizontal,
pageSnapping: true,
children: [
Container(
color: Colors.green,
child: Text('Home Page'),
),
Container(
child: Text('Profile Page'),
),
Container(
child: Text('Search Page'),
),
Container(
child: Text('Jobs Page'),
),
],
);
}
}
您应该在 PageViewController 中使用 animateToPage or jumpToPage 方法。您还需要使您的页面小部件 StatefullWidget。
这就是你可以做到的。一旦您从您的供应商处致电 notifyListener
,如果 currentPage
已更改,这将转到新选择的页面
class Pages extends StatelessWidget {
final PageController _pageController =
PageController(initialPage:0);
@override
Widget build(BuildContext context) {
return Consumer<CurrentPage>(builder:(ctx, currentPage, widget){
final pageView = PageView(
onPageChanged: (int) {},
controller: _pageController,
scrollDirection: Axis.horizontal,
pageSnapping: true,
children: [
Container(
color: Colors.green,
child: Text('Home Page'),
),
Container(
child: Text('Profile Page'),
),
Container(
child: Text('Search Page'),
),
Container(
child: Text('Jobs Page'),
),
],);
if(currentPage.currentPage != _pageController.page.floor()){
_pageController.jumpToPage(currentPage.currentPage);
}
return pageView;
}
);
}
}