BottomNavigationThree to five top-level destinations, always reachable, pinned above the home indicator.
using eQuantic.UI.Components;
new BottomNavigation(_tab, i => SetState(() => _tab = i))
Items = [ new BottomNavigationItem(Icons.Home, "Home"),
new BottomNavigationItem(Icons.List, "Activity") { BadgeCount = 3 } ],
Prop
Type
Default
Description
Selected
int
0
Active destination.
OnSelect
Action<int>?
null
Handler; re-selecting the active item should pop its stack to root.
Item.BadgeCount
int
0
Per-item count badge; zero renders nothing.
Selected
Filled glyph and Primary label
Unselected
Outline glyph, TextSecondary
With badge
Count anchored to the glyph
•
Each item is a tab announcing "Activity, 3 new, 2 of 4, selected". The bar is one focus group.
•
Flat top-level destinations on phones.
•
Actions instead of destinations.
NOTEEvery dimension resolves through Sizing.*(SizeVariant) and the token scales — never a literal. Source: src/eQuantic.UI.Components/BottomNavigation.cs.