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"
}
}
}
]
}