Files
rasadyar_application/packages/auth/lib/presentation/pages/modules/view.dart
mr.mojtaba feb3df6a06 fix : change app architecture
feat : add some method to local storage
2025-05-14 09:42:44 +03:30

16 lines
317 B
Dart

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();
}
}