增加若干基础页面
This commit is contained in:
19
lib/pages/layout/home/home_logic.dart
Normal file
19
lib/pages/layout/home/home_logic.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import 'home_state.dart';
|
||||
|
||||
class HomeLogic extends GetxController {
|
||||
final HomeState state = HomeState();
|
||||
|
||||
@override
|
||||
void onReady() {
|
||||
// TODO: implement onReady
|
||||
super.onReady();
|
||||
}
|
||||
|
||||
@override
|
||||
void onClose() {
|
||||
// TODO: implement onClose
|
||||
super.onClose();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user