Files
rasadyar_application/features/supervision/lib/presentation/actions/logic.dart

16 lines
306 B
Dart
Raw Normal View History

2025-04-21 07:30:14 +03:30
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;
}
}