show method
void
show()
显示动画
Show animation.
Implementation
void show() {
if (!_animationController.isCompleted) {
_animationController.forward();
notifyListeners(); // 通知监听者
}
}
显示动画
Show animation.
void show() {
if (!_animationController.isCompleted) {
_animationController.forward();
notifyListeners(); // 通知监听者
}
}