Commit eb7b0eec by tanghuan

调整默认路由和登录界面路由

1 parent 25c15ce9
......@@ -21,7 +21,7 @@ import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
final GoRouter router = GoRouter(
initialLocation: '/loginQr',
initialLocation: '/web',
observers: Platform.isIOS ? [LinkPageObserver(), IosGestureObserver()] : [LinkPageObserver()],
routes: <RouteBase>[
GoRoute(
......@@ -46,7 +46,8 @@ final GoRouter router = GoRouter(
path: '/loginMain',
builder: (BuildContext context, GoRouterState state) {
// return const LoginMainPage();
return const LoginMainPageV3();
// return const LoginMainPageV3();
return const LoginQrPageV3();
},
),
GoRoute(
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!