removeAnimation method
Удаление анимации
Implementation
void removeAnimation(Animation animation) {
layer.animations.remove(animation);
if (_selectedAnim == animation) {
_selectedAnim = null;
}
notifyListeners();
}
Удаление анимации
void removeAnimation(Animation animation) {
layer.animations.remove(animation);
if (_selectedAnim == animation) {
_selectedAnim = null;
}
notifyListeners();
}