Initial commit

This commit is contained in:
2024-12-16 00:38:18 +03:00
commit 2987b3008d
95 changed files with 2699 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import 'package:get/get.dart';
import 'package:reverse_nn/application/services/schedule.dart';
class ScheduleController extends GetxController {
Rx<Map<String, dynamic>?> currentSchedule = null.obs;
@override void onReady() {
super.onReady();
ScheduleService().getCurrentStatus().then((currentSchedule) {
this.currentSchedule = currentSchedule.obs;
update();
});
}
}