Flutter iOS風格基礎(chǔ)UI框架搭建

Fetures:

  • 全使用iOS風格widget(CupertinoTabBar搭配CupertinoTabScaffold)
  • tabBar上菜單可自由設(shè)置顯示風格(包括圖標哨查、字體大小顏色)

Attention:

  • 此入口類CupertinoTabScaffold內(nèi)未設(shè)置navigationBar溺健, navigationBar最好都在各自page頁內(nèi)設(shè)置棍郎,這樣可自定制navigationBar上顯示的不同元素。(如果在此入口類設(shè)置了navigationBar鲫剿,各tab首頁page的navigationBar上顯示元素就會一致鳄逾,個性化定制各page的navigationBar就需要加入更多的邏輯稻轨,建議navigationBar分散到各自的page頁去實現(xiàn))

main.dart

import 'package:flutter/cupertino.dart';
import 'package:myapp/src/EngwordsPage.dart';
import 'package:myapp/src/SamplePage.dart';
import 'package:myapp/src/FirstPage.dart';
import 'package:myapp/src/ListPage.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyMainState createState() => new _MyMainState();
}

class _MyMainState extends State<MyApp> {
  // 默認索引第一個tab
  int _tabIndex = 0;

  // 正常情況的字體樣式
  final tabTextStyleNormal = new TextStyle(color: const Color(0xff969696));

  // 選中情況的字體樣式
  final tabTextStyleSelect = new TextStyle(color: const Color(0xff63ca6c));

  // 底部菜單欄圖標數(shù)組
  var tabImages;

  // 頁面內(nèi)容
  var _pages;

  // 菜單文案
  var tabTitles = ['推薦', '資訊', '發(fā)現(xiàn)', '我的'];

  // 路由map
  Map<String, WidgetBuilder> _routes = new Map();

  // 生成image組件
  Image getTabImage(path) {
    return new Image.asset(path, width: 20.0, height: 20.0);
  }

  void initData() {
    if (tabImages == null) {
      tabImages = [
        [
          getTabImage('assets/images/ic_nav_news_normal.png'),
          getTabImage('assets/images/ic_nav_news_actived.png')
        ],
        [
          getTabImage('assets/images/ic_nav_tweet_normal.png'),
          getTabImage('assets/images/ic_nav_tweet_actived.png')
        ],
        [
          getTabImage('assets/images/ic_nav_discover_normal.png'),
          getTabImage('assets/images/ic_nav_discover_actived.png')
        ],
        [
          getTabImage('assets/images/ic_nav_my_normal.png'),
          getTabImage('assets/images/ic_nav_my_pressed.png')
        ]
      ];
    }

    _pages = [
      new EngwordsPage(),
      new SamplePage(),
      new ListWidget("發(fā)現(xiàn)"),
      new FirstPage()
    ];

  //獲取菜單欄字體樣式
  TextStyle getTabTextStyle(int curIndex) {
    if (curIndex == _tabIndex) {
      return tabTextStyleSelect;
    } else {
      return tabTextStyleNormal;
    }
  }

  // 獲取圖標
  Image getTabIcon(int curIndex) {
    if (curIndex == _tabIndex) {
      return tabImages[curIndex][1];
    }
    return tabImages[curIndex][0];
  }

  // 獲取標題文本
  Text getTabTitle(int curIndex) {
    return new Text(
      tabTitles[curIndex],
      style: getTabTextStyle(curIndex),
    );
  }

  // 獲取BottomNavigationBarItem
  List<BottomNavigationBarItem> getBottomNavigationBarItem() {
    List<BottomNavigationBarItem> list = new List();
    for (int i = 0; i < 4; i++) {
      list.add(new BottomNavigationBarItem(
          icon: getTabIcon(i), title: getTabTitle(i)));
    }
    return list;
  }

  @override
  Widget build(BuildContext context) {
    initData();
    return new CupertinoApp(
      title: "Demo",
      theme: new CupertinoThemeData(
        primaryColor: CupertinoColors.darkBackgroundGray,
      ),
      routes: _routes,
      home: new CupertinoTabScaffold(
        tabBar: CupertinoTabBar(
          items: getBottomNavigationBarItem(),
          currentIndex: _tabIndex,
          onTap: (index) {
            setState(() {
              _tabIndex = index;
            });
          },
        ),
        tabBuilder: (BuildContext context, int index) {
          return CupertinoTabView(
            builder: (BuildContext context) {
              return CupertinoPageScaffold(
                child: _pages[index],
                // navigationBar: CupertinoNavigationBar(
                //   middle: Text(tabTitles[index]),
                //   trailing: _trailingButtons[index],
                // ),
              );
            },
          );
        },
      ),
    );
  }
}

FirstPage.dart

import 'package:flutter/cupertino.dart';

class FirstPage extends StatefulWidget {
  @override
  FirstPageState createState() => new FirstPageState();
}

class FirstPageState extends State<FirstPage> {
  final rt = new CupertinoButton(
      child: new Image.asset("assets/images/nav_close.png"),
      onPressed: () {
        print("right clicked");
      },
    );
  
  @override
  Widget build(BuildContext context) {
    return new CupertinoPageScaffold(
      navigationBar: CupertinoNavigationBar(
        middle: Text("First"),
        trailing: rt,
        border: Border.all(width: 0, color: CupertinoColors.darkBackgroundGray),
      ),
      child: new Container(
        child: new Center(
          child: new Text(
            "這是第一個界面",
            style: new TextStyle(
              color: CupertinoColors.darkBackgroundGray,
              fontSize: 18,
            ),
          ),
        ),
      ),
    );
  }
}

其他類(EngwordsPage.dart灵莲、SamplePage.dart)都是如此的UI結(jié)構(gòu)。

Effects:

capture1.png
capture2.png
capture3.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末殴俱,一起剝皮案震驚了整個濱河市政冻,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌线欲,老刑警劉巖明场,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異李丰,居然都是意外死亡苦锨,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門趴泌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來舟舒,“玉大人,你說我怎么就攤上這事嗜憔⊥豪” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵吉捶,是天一觀的道長夺鲜。 經(jīng)常有香客問我皆尔,道長,這世上最難降的妖魔是什么币励? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任慷蠕,我火速辦了婚禮,結(jié)果婚禮上榄审,老公的妹妹穿的比我還像新娘砌们。我一直安慰自己,他們只是感情好搁进,可當我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布浪感。 她就那樣靜靜地躺著,像睡著了一般饼问。 火紅的嫁衣襯著肌膚如雪影兽。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天莱革,我揣著相機與錄音峻堰,去河邊找鬼。 笑死盅视,一個胖子當著我的面吹牛捐名,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播闹击,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼镶蹋,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了赏半?” 一聲冷哼從身側(cè)響起贺归,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎断箫,沒想到半個月后拂酣,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡仲义,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年婶熬,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片埃撵。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡赵颅,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出盯另,到底是詐尸還是另有隱情性含,我是刑警寧澤,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布鸳惯,位于F島的核電站商蕴,受9級特大地震影響叠萍,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜绪商,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一苛谷、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧格郁,春花似錦腹殿、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至决采,卻和暖如春自沧,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背树瞭。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工拇厢, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人晒喷。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓孝偎,卻偏偏與公主長得像,于是被迫代替她去往敵國和親凉敲。 傳聞我的和親對象是個殘疾皇子衣盾,可洞房花燭夜當晚...
    茶點故事閱讀 43,724評論 2 351