溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

flutter如何實現(xiàn)仿boss直聘功能

發(fā)布時間:2021-06-28 13:52:02 來源:億速云 閱讀:106 作者:小新 欄目:移動開發(fā)

小編給大家分享一下flutter如何實現(xiàn)仿boss直聘功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

感悟

  1. 與一些文章里介紹的非常相似,如果會RN,那么學(xué)起來會很快,flutter借鑒了RN的組件化思想,路由機制,狀態(tài)機等。

  2. Dart語法有些奇葩,但掌握之后,開發(fā)效率會很快,整個demo加起來開發(fā)了2天不到。

  3. 可以同時在android和ios運行。

  4. 性能很快,超過RN,因為沒有bridge層。

  5. 還是要多看官方文檔和源碼,才能碰到問題解決。

  6. IDE還不是很友好,hot reload有時無效。

  7. 還是比RN要復(fù)雜一些的。

先上效果

flutter如何實現(xiàn)仿boss直聘功能

部署到手機

確保flutter正確安裝之后,進入目錄運行flutter run --release

環(huán)境問題

如果flutter環(huán)境有問題,在.bash_profile里加上如下內(nèi)容

export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
export PATH=`pwd`/flutter/bin:$PATH

涉及技術(shù)點

1.Theme主題設(shè)置  

theme: new ThemeData(
    primaryIconTheme: const IconThemeData(color: Colors.white),
    brightness: Brightness.light,
    primaryColor: new Color.fromARGB(255, 0, 215, 198),
    accentColor: Colors.cyan[300],
   )

2.自定義TabBar

  @override
   Widget build(BuildContext context) {
    assert(debugCheckHasMaterial(context));
  
    double height = _kTextAndIconTabHeight;
    Widget label = new Column(
      mainAxisAlignment: MainAxisAlignment.center,
      crossAxisAlignment: CrossAxisAlignment.center,
      children: <Widget>[
       new Container(
        child: new Image(
         image: new AssetImage(this.icon),
         height: 30.0,
         width: 30.0,
        ),
        margin: const EdgeInsets.only(bottom: _kMarginBottom),
       ),
       _buildLabelText()
      ]
    );
   }

3.MD風(fēng)格及一些組件應(yīng)用

 new SliverAppBar(
   expandedHeight: _appBarHeight,
   pinned: _appBarBehavior == AppBarBehavior.pinned,
   floating: _appBarBehavior == AppBarBehavior.floating ||
     _appBarBehavior == AppBarBehavior.snapping,
   snap: _appBarBehavior == AppBarBehavior.snapping,
   flexibleSpace: new FlexibleSpaceBar(
    title: new Text(_company.name,
      style: new TextStyle(color: Colors.white)),
    background: new Stack(
     fit: StackFit.expand,
     children: <Widget>[
      new Image.network(
       'https://img.bosszhipin.com/beijin/mcs/chatphoto/20170725/861159df793857d6cb984b52db4d4c9c.jpg',
       fit: BoxFit.cover,
       height: _appBarHeight,
      ),
     ],
    ),
   ),
  )

4.解決了官方demo里路由跳轉(zhuǎn)效果卡頓的問題

Navigator.of(context).push(new PageRouteBuilder(
    opaque: false,
    pageBuilder: (BuildContext context, _, __) {
     return new CompanyDetail(company);
    },
    transitionsBuilder: (_, Animation<double> animation, __, Widget child) {
     return new FadeTransition(
      opacity: animation,
      child: new SlideTransition(position: new Tween<Offset>(
       begin: const Offset(0.0, 1.0),
       end: Offset.zero,
      ).animate(animation), child: child),
     );
    }
  ))

以上是“flutter如何實現(xiàn)仿boss直聘功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI