chore : change app archticle
This commit is contained in:
16
features/auth/lib/presentation/pages/modules/logic.dart
Normal file
16
features/auth/lib/presentation/pages/modules/logic.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
import 'package:rasadyar_core/core.dart';
|
||||
|
||||
class ModulesLogic extends GetxController {
|
||||
|
||||
|
||||
|
||||
@override
|
||||
void onReady() {
|
||||
super.onReady();
|
||||
}
|
||||
|
||||
@override
|
||||
void onClose() {
|
||||
super.onClose();
|
||||
}
|
||||
}
|
||||
15
features/auth/lib/presentation/pages/modules/view.dart
Normal file
15
features/auth/lib/presentation/pages/modules/view.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import 'logic.dart';
|
||||
|
||||
class ModulesPage extends GetView<ModulesLogic> {
|
||||
const ModulesPage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final ModulesLogic logic = Get.put(ModulesLogic());
|
||||
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user