5、Flutter 实现 ViewPager、bottomNavigationBar 界面切换
生活随笔
收集整理的這篇文章主要介紹了
5、Flutter 实现 ViewPager、bottomNavigationBar 界面切换
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、前言
首先我們想一下,如果在 Android 中實現 布局切換,通常的思路是:
2、Flutter 實現
上邊提到的用安卓原生做,思路是很明確,但是代碼量還是有的,那么來看一下, Flutter 如何使用 Viewpager 實現的。
2.1、創建有狀態 Widget
首先創建有狀態 StatefulWidget,然后構建 state:_ApplicationPageState
class ApplicationPage extends StatefulWidget {//@override//_ApplicationPageState createState() => new _ApplicationPageState();等同于上邊注釋掉的 createState();@overrideState<StatefulWidget> createState() {// TODO: implement createStatereturn _ApplicationPageState();}}2.2、state
Scaffold 實現了基本的紙墨設計布局結構。所以我們 new Scaffold 然后 return 即可。
class _ApplicationPageState extends State<ApplicationPage> {int _currentPageIndex = 0;var _pageController = new PageController(initialPage: 0);@overrideWidget build(BuildContext context) {return new Scaffold(appBar:new AppBar(title: new Text("我是AppBar"),centerTitle: true,),body: new PageView.builder(onPageChanged:_pageChange,controller: _pageController,itemBuilder: (BuildContext context,int index){return index==1?new Text("我是第一頁"):new Text("我是第二頁");},itemCount: 2,),bottomNavigationBar: new BottomNavigationBar(items: [BottomNavigationBarItem(icon: new Icon(Icons.category), title: new Text("首頁")),BottomNavigationBarItem(icon: new Icon(Icons.message), title: new Text("我的")),],currentIndex: _currentPageIndex,onTap: onTap,),);}// bottomnaviagtionbar 和 pageview 的聯動void onTap(int index) {// 過pageview的pagecontroller的animateToPage方法可以跳轉 _pageController.animateToPage(index,duration: const Duration(milliseconds: 300), curve: Curves.ease);}void _pageChange(int index) {setState(() {if (_currentPageIndex != index) {_currentPageIndex = index;}});}}關于上邊有幾個方法:
Scaffold 有下面幾個主要屬性:- appBar:顯示在界面頂部的一個 AppBar,也就是 Android 中的 ActionBar 、Toolbar
- body:當前界面所顯示的主要內容 Widget
- bottomNavigationBar: 顯示在頁面底部的導航欄
2.3、navBar和pageview如何聯動?
通過上邊的代碼也可以發現,pageView有個?onPageChanged 屬性,并且類中定義了一個?_pageChange 方法,
通過 pageview 的 pagecontroller 的 animateToPage 方法實現的界面跳轉;
?
總結
以上是生活随笔為你收集整理的5、Flutter 实现 ViewPager、bottomNavigationBar 界面切换的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HDU6168 Numbers
- 下一篇: Flume协作框架