feat : action

add supervisons
This commit is contained in:
2025-04-21 07:30:14 +03:30
parent a7c3fa4c98
commit d4ebefedba
4 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import 'package:get/get.dart';
class RdsLogic extends GetxController {
}

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