Files
rasadyar_application/features/supervision/lib/presentation/root/logic.dart
mr.mojtaba 3b693c7e60 feat : action
add supervisons
2025-04-19 16:50:36 +03:30

30 lines
626 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:supervision/presentation/actions/view.dart';
import 'package:supervision/presentation/filter/view.dart';
class RootLogic extends GetxController {
RxInt currentIndex = 0.obs;
List<Widget> pages = [
SupervisionFilterPage(),
ActionsPage(),
Placeholder(color: Colors.amber),
];
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}
void changePage(int index) {
currentIndex.value = index;
}
@override
void onClose() {
// TODO: implement onClose
super.onClose();
}
}