|
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();
|
|
}
|
|
}
|