feat : action
add supervisons
This commit is contained in:
5
features/supervision/lib/presentation/rds/logic.dart
Normal file
5
features/supervision/lib/presentation/rds/logic.dart
Normal file
@@ -0,0 +1,5 @@
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class RdsLogic extends GetxController {
|
||||
|
||||
}
|
||||
15
features/supervision/lib/presentation/rds/view.dart
Normal file
15
features/supervision/lib/presentation/rds/view.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import 'logic.dart';
|
||||
|
||||
class RdsPage extends StatelessWidget {
|
||||
RdsPage({Key? key}) : super(key: key);
|
||||
|
||||
final RdsLogic logic = Get.put(RdsLogic());
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user