mobile_skt/lib/screens/workbench/workbench_controller.dart

13 lines
271 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
class WorkBenchController extends GetxController {
late final AnimationController animationController;
@override
void onClose() {
animationController.dispose();
super.onClose();
}
}