Files
rasadyar_application/features/supervision/lib/presentation/root/logic.dart
2025-04-20 08:53:15 +03:30

30 lines
594 B
Dart

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