91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

flutter如何實現切換頁面緩存

發布時間:2022-07-29 11:37:56 來源:億速云 閱讀:189 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“flutter如何實現切換頁面緩存”,內容詳細,步驟清晰,細節處理妥當,希望這篇“flutter如何實現切換頁面緩存”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

一、實現底部導航欄切換頁面緩存

實現底部導航欄切換頁面緩存需要在pubspc.yamal中導入proste_indexed_stack插件,這個插件可以實現懶加載,比起使用IndexedStack包裹body實現,性能更好。

dependencies:

#懶加載的層疊組件
proste_indexed_stack:  //不加版本號可獲取最新版本

實現底部導航切換頁面緩存只需將bodyProsteIndexedStack包裹一層既可以,注意ProsteIndexedStackchildrenIndexedStackChild類型的,所以中的每一個children 的每一項都需要用IndexedStackChild包裹

示例:

import 'package:flutter/material.dart';
... //其他需要import的內容省略

class RootPage extends StatefulWidget {
  @override
  _RootPageState createState() => _RootPageState();
}

class _RootPageState extends State<RootPage> {
  //底部導航欄數組
  final items = [
    BottomNavigationBarItem(
        icon: Icon(Icons.home),label: '首頁',tooltip: ''
    ),
    BottomNavigationBarItem(
        icon: Icon(Icons.music_note),label: '音樂',tooltip: ''
    ),
    BottomNavigationBarItem(
        icon: Icon(Icons.slow_motion_video),label: '短視頻',tooltip: ''
    ),
    BottomNavigationBarItem(
        icon: Icon(Icons.account_circle_outlined),label: '我的',tooltip: ''
    ),
  ];

  //底部導航欄頁面
  final bodyList = [
    IndexedStackChild(child: HomePage()),
    IndexedStackChild(child: MusicPage()),
    IndexedStackChild(child: TinyVideoPage()),
    IndexedStackChild(child: ProfilePage()),
  ];

  //當前選中頁面索引
  int _currentIndex = 0;

  //底部導航欄切換
  void _onTap(int index) {
    setState(() {
      _currentIndex = index;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      bottomNavigationBar: BottomNavigationBar(
        items: items,
        currentIndex: _currentIndex,  //當前選中標識符
        onTap: _onTap,
        type: BottomNavigationBarType.fixed,
      ),
      //ProsteIndexedStack包裹,實現底部導航切換時保持原頁面狀態
      body: ProsteIndexedStack(
        index: _currentIndex,
        children: bodyList,
      ),
    );
  }
}

二、實現頂部tab切換頁面緩存

頂部tab切換頁面緩存可使用AutomaticKeepAliveClientMixin實現,只需在頁面的state中混入AutomaticKeepAliveClientMixin,然后重寫wantKeepAlivetrue即可。

做了以上配置,你如果在build print 一下,當你切換 tabbar 時,print 就不會打印,也就實現了頁面保持狀態。

示例:

import 'package:flutter/material.dart';

class ExamplePage extends StatefulWidget {
  @override
  _ExamplePageState createState() => _RecommendPageState();
}

class _ExmaplePageState extends State<ExamplePage>
    with AutomaticKeepAliveClientMixin {
  int count = 0;

  void add() {
    setState(() {
      count++;
    });
  }

  @override
  bool get wantKeepAlive => true;

  @override
  void initState() {
    super.initState();
    print('recommend initState');
  }

  @override
  Widget build(BuildContext context) {
    super.build(context);
    return Scaffold(
        body:Center(
          child: Text('Example: $count', style: TextStyle(fontSize: 30))
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: add,
          child: Icon(Icons.add),
        ));
  }
}

讀到這里,這篇“flutter如何實現切換頁面緩存”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富顺县| 图木舒克市| 庆元县| 聊城市| 儋州市| 温州市| 双城市| 台前县| 临江市| 乌鲁木齐市| 京山县| 延寿县| 罗田县| 志丹县| 太原市| 屯昌县| 德庆县| 中宁县| 沙雅县| 中西区| 互助| 荥经县| 察雅县| 怀仁县| 杭锦后旗| 双辽市| 慈溪市| 阳曲县| 克拉玛依市| 曲麻莱县| 乌什县| 东平县| 卫辉市| 承德县| 沙坪坝区| 荥经县| 葫芦岛市| 桃园县| 金山区| 巴马| 常山县|