簡體   English   中英

屏幕下方有圖標的 flutter 小部件的名稱是什么?

[英]What's the name of flutter widget that has icons bellow the screen?

屏幕下方有圖標的 Flutter 小部件的名稱是什么,我可以左右滑動以在這些屏幕之間切換(例如:Twitter 主頁)

我想用這四個圖標制作我的主頁,就像這張圖片

我可以創建一個帶有RowIconsContainer並手動執行此操作,但我懷疑 Flutter 上已經存在此小部件。

這個底部導航欄可以使用BottomNavigationBar在你的ScaffoldbottomNavigationBar屬性中完成:

bottomNavigationBar: BottomNavigationBar(
    items: [
      BottomNavigationBarItem(icon: Icon(Icons.home), label: 'Home'),
      BottomNavigationBarItem(
          icon: Icon(Icons.business), label: 'Business'),
      BottomNavigationBarItem(icon: Icon(Icons.school), label: 'School'),
    ],
  ),

對於可滑動頁面,可以使用PageView小部件來完成:

PageView(
        children: <Widget>[
    ScreenOne(),
    ScreenTwo(),
    ScreenThree(),
  ],
);

當您單擊BottomNavigationBar中的項目時,您可以鏈接它們,它將導航到帶有PageController的特定頁面。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM