rotate method
旋转图片(按指定角度)
Implementation
void rotate(double degrees) {
_currentRotationAngle += (degrees * math.pi / 180.0);
notifyListeners();
}
旋转图片(按指定角度)
void rotate(double degrees) {
_currentRotationAngle += (degrees * math.pi / 180.0);
notifyListeners();
}