Files
rasadyar_application/features/supervision/lib/presentation/actions/logic.dart
mr.mojtaba d4ebefedba feat : action
add supervisons
2025-04-21 07:30:14 +03:30

16 lines
306 B
Dart

import 'package:rasadyar_core/core.dart';
class ActionsLogic extends GetxController with GetTickerProviderStateMixin{
RxInt currentIndex = 0.obs;
late Rx<SlidableController> slidController;
@override
void onInit() {
super.onInit();
slidController = SlidableController(this).obs;
}
}