Skip to content

Latest commit

 

History

History
43 lines (39 loc) · 929 Bytes

bottom_nav.md

File metadata and controls

43 lines (39 loc) · 929 Bytes

Bottom Navigation Scaffold

The bottom_nav_scaffold widget is a special version of scaffold which provides support for the Bottom Navigation Bar from Material Design.

{
    "type": "bottom_nav_scaffold",
    "app_bar": {},
    "fab": {},
    "drawer": {},
    "items": [
      {
        "icon": "alarm",
        "title": "Alarms",
        "body": {
          "type": "center",
          "child": {
            "type": "text",
            "text": "Alarms"
          }
        }
      },
      {
        "icon": "person",
        "title": "Profile",
        "body": {
          "type": "center",
          "child": {
            "type": "text",
            "text": "Profile"
          }
        }
      }
    ]
}

See Also