chore : change package supervision to inspection

This commit is contained in:
2025-04-22 15:51:05 +03:30
parent a45c0807d1
commit 1ad180d0b6
32 changed files with 121 additions and 127 deletions

View File

@@ -0,0 +1,25 @@
import 'package:flutter/material.dart';
import 'package:rasadyar_core/core.dart';
import 'package:inspection/presentation/action/view.dart';
import 'package:inspection/presentation/filter/view.dart';
import 'package:inspection/presentation/profile/view.dart';
class RootLogic extends GetxController {
RxInt currentIndex = 0.obs;
List<Widget> pages = [SupervisionFilterPage(), ActionPage(), ProfilePage()];
@override
void onReady() {
super.onReady();
}
void changePage(int index) {
currentIndex.value = index;
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}