This commit is contained in:
@@ -13,6 +13,7 @@ class MainPage extends StatelessWidget {
|
||||
return AutoTabsRouter.pageView(
|
||||
routes: [
|
||||
HomeRoute(),
|
||||
OrderRoute(),
|
||||
ExclusiveSummaryRoute(),
|
||||
InventoryRoute(),
|
||||
ProfileRoute(),
|
||||
|
||||
@@ -30,6 +30,11 @@ class _MainBottomNavbarState extends State<MainBottomNavbar> {
|
||||
label: context.lang.home,
|
||||
tooltip: context.lang.home,
|
||||
),
|
||||
BottomNavigationBarItem(
|
||||
icon: HugeIcon(icon: HugeIcons.strokeRoundedBorderFull),
|
||||
label: context.lang.order,
|
||||
tooltip: context.lang.order,
|
||||
),
|
||||
BottomNavigationBarItem(
|
||||
icon: HugeIcon(icon: HugeIcons.strokeRoundedChart03),
|
||||
label: context.lang.report,
|
||||
|
||||
@@ -49,7 +49,7 @@ class _OrderPageState extends State<OrderPage> with TickerProviderStateMixin {
|
||||
final ScrollController _scrollController = ScrollController();
|
||||
|
||||
// Filter state
|
||||
final List<String> filterOptions = ['All', 'Completed', 'Pending'];
|
||||
final List<String> filterOptions = ['All', 'Pending', 'Completed'];
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
|
||||
Reference in New Issue
Block a user