feat : header action

This commit is contained in:
2025-04-20 08:53:15 +03:30
parent 3b693c7e60
commit e643a4844e
4 changed files with 117 additions and 5 deletions

View File

@@ -1,19 +1,19 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:supervision/presentation/actions/view.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(),
ActionsPage(),
ActionPage(),
Placeholder(color: Colors.amber),
];
@override
void onReady() {
// TODO: implement onReady
super.onReady();
}