feat : action

add supervisons
This commit is contained in:
2025-04-21 07:30:14 +03:30
parent a7c3fa4c98
commit d4ebefedba
4 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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;
}
}