action
 profile
This commit is contained in:
2025-04-21 15:45:15 +03:30
parent d4ebefedba
commit 0c750e1c01
36 changed files with 1082 additions and 207 deletions

View File

@@ -2,18 +2,14 @@ import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:supervision/presentation/action/view.dart';
import 'package:supervision/presentation/filter/view.dart';
import 'package:supervision/presentation/profile/view.dart';
class RootLogic extends GetxController {
RxInt currentIndex = 0.obs;
List<Widget> pages = [
SupervisionFilterPage(),
ActionPage(),
Placeholder(color: Colors.amber),
];
List<Widget> pages = [SupervisionFilterPage(), ActionPage(), ProfilePage()];
@override
void onReady() {
super.onReady();
}