16 lines
317 B
Dart
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();
|
|
}
|
|
}
|