13 lines
271 B
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();
|
||
|
}
|
||
|
}
|