export xlsx
This commit is contained in:
@ -13,10 +13,14 @@ class MyApp extends StatelessWidget {
|
||||
final _router = GoRouter(
|
||||
routes: [
|
||||
GoRoute(
|
||||
name: "order_list",
|
||||
path: '/',
|
||||
builder: (context, state) => const OrderList(),
|
||||
),
|
||||
GoRoute(path: '/logistics', builder: (context, state) => const Logistics())
|
||||
GoRoute(
|
||||
path: '/logistics',
|
||||
name: "logistics",
|
||||
builder: (context, state) => const Logistics())
|
||||
],
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user