You can edit 8 Components for free. Get premium for unlimited access.
Integrate seamless navigation into your app with the Bottom Navigation component.
The Bottom Navigation component is used to enable easy navigation within an app or to clarify which page you are on.
This component inherits props from the Bottom Navigation.
-
You can edit the count with the 2, 3, 4 or 5 parameter.

Image 2.1 : Count 2

Image 2.2 : Count 3

Image 2.3 : Count 4

Image 2.4 : Count 5
You can edit the label with the true or false parameter.

Image 3.1 : Label true

Image 3.2 : Label false
You can edit the badge with the none, sm or md parameter.

Image 4.1 : Badge none

Image 4.2 : Badge sm

Image 4.3 : Badge md
The DLBottomNavigation component is used to enable easy navigation within an app or to clarify which page you are on.
This component inherits props from the Bottom Navigation.
-
-
-
You can edit the icon with the "icon" parameter.
You can edit the label with the "text" parameter.
You can edit the badgeSize with the .sm or .md(text: String) parameter.
The BottomNavigation component is used to enable easy navigation within an app or to clarify which page you are on.
This component inherits props from the Bottom Navigation.
-
-
-
You can edit the icon with the "icon" parameter.
You can edit the label with the "text" parameter.
You can edit the badgeSize with the .sm or .md(text: String) parameter.
Preview
Code
DlBottomNavigation(
tabs: const [
DlBottomNavigationTab(
text: 'Label-1',
icon: DlPlaceholderIcon(),
),
DlBottomNavigationTab(
text: 'Label-2',
icon: DlPlaceholderIcon(),
),
DlBottomNavigationTab(
text: 'Label-3',
icon: DlPlaceholderIcon(),
),
],
onTabChanged: (index) {
// Handle navigation here
},
)Add this code example to your project to see how the component works.
DlBottomNavigation(
showSeparator: false,
tabs: const [
DlBottomNavigationTab(
text: 'Label',
icon: DlPlaceholderIcon(),
),
DlBottomNavigationTab(
text: 'Label',
icon: DlPlaceholderIcon(),
badge: DlBadge(size: DlBadgeSize.sm),
),
DlBottomNavigationTab(
text: 'Label',
icon: DlPlaceholderIcon(),
badge: DlBadge(size: DlBadgeSize.md, value: '2'),
),
],
onTabChanged: (index) {
// Handle navigation here
},
)DlBottomNavigation displays a customizable row of navigation tabs with optional separator, badges and labels.
DlBottomNavigation
DlBottomNavigationTab
Without label
Preview
Code
DlBottomNavigation(
tabs: const [
DlBottomNavigationTab(
icon: DlPlaceholderIcon(),
),
DlBottomNavigationTab(
icon: DlPlaceholderIcon(),
),
DlBottomNavigationTab(
icon: DlPlaceholderIcon(),
),
],
onTabChanged: (index) {
// Handle navigation here
},
)With badge
Preview
Code
DlBottomNavigation(
tabs: const [
DlBottomNavigationTab(
text: 'Label',
icon: DlPlaceholderIcon(),
),
DlBottomNavigationTab(
text: 'Label',
icon: DlPlaceholderIcon(),
badge: DlBadge(size: DlBadgeSize.sd),
),
DlBottomNavigationTab(
text: 'Label',
icon: DlPlaceholderIcon(),
badge: DlBadge(size: DlBadgeSize.md, value: '2'),
),
],
onTabChanged: (index) {
// Handle navigation here
},
)You have questions or need help?
You want to try?
Save time and money?