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