Flutter學習筆記(39)--BottomNavigationBar底部item超過3個只顯示icon,不顯示title


如需轉載,請注明出處:Flutter學習筆記(39)--BottomNavigationBar底部item超過3個只顯示icon,不顯示title

          items: [
            _bottomItem(Ids.home, 'ic_home_normal', 'ic_home_selected', 0),
            _bottomItem(Ids.information, 'ic_discovery_normal', 'ic_discovery_selected', 1),
            _bottomItem(Ids.news, 'ic_hot_normal', 'ic_hot_selected', 2),
            _bottomItem(Ids.mine, 'ic_mine_normal', 'ic_mine_selected', 3),
          ],

加上type: BottomNavigationBarType.fixed,即可

items: [
            _bottomItem(Ids.home, 'ic_home_normal', 'ic_home_selected', 0),
            _bottomItem(Ids.information, 'ic_discovery_normal', 'ic_discovery_selected', 1),
            _bottomItem(Ids.news, 'ic_hot_normal', 'ic_hot_selected', 2),
            _bottomItem(Ids.mine, 'ic_mine_normal', 'ic_mine_selected', 3),
          ],
          type: BottomNavigationBarType.fixed,

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM