16 lines
306 B
Dart
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;
|
|
}
|
|
|
|
}
|
|
|