增加若干基础页面

This commit is contained in:
2023-12-22 23:27:14 +08:00
parent a8f9b5265e
commit a16d808d2d
32 changed files with 801 additions and 51 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter_jdt_store/pages/layout/home/index.dart';
import 'package:flutter_jdt_store/pages/layout/user/index.dart';
import 'package:get/get.dart';
import 'tab_logic.dart';
class TabBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => TabLogic());
Get.lazyPut(() => HomeLogic());
Get.lazyPut(() => UserLogic());
}
}