update ios project

update ios project
This commit is contained in:
Zeus
2024-07-24 11:51:39 +08:00
parent 876d355b18
commit 1bf69048f3
275 changed files with 3372 additions and 1015 deletions
+28
View File
@@ -0,0 +1,28 @@
import 'package:fluro/fluro.dart';
import 'package:uuvpn/router/router_handlers.dart';
class Routers {
static String home = "/";
static String login = "/login";
static String plan = "/plan";
static String serverList = '/server-list';
static String webView = "/web-view";
static String account = "/account";
static void configureRoutes(FluroRouter router) {
router.notFoundHandler = notFindHandler;
router.define(home, handler: homeHandler);
router.define(login, handler: loginHandler);
router.define(plan, handler: planHandle);
router.define(serverList, handler: serverListHandler);
router.define(webView, handler: webViewHandler);
router.define(account, handler: accountHandler);
}
}