feat:AnimatinSet on iOS use AnimationGroup

This commit is contained in:
pengfei.zhou
2019-12-02 11:01:56 +08:00
parent ebfcbdec15
commit a94ed4d880
4 changed files with 55 additions and 34 deletions

View File

@@ -49,8 +49,6 @@ abstract class Animation implements IAnimation {
key: e.key,
fromValue: e.fromValue,
toValue: e.toValue,
repeatCount: this.repeatCount,
repeatMode: this.repeatMode,
})
}
return {
@@ -58,6 +56,8 @@ abstract class Animation implements IAnimation {
delay: this.delay,
duration: this.duration,
changeables,
repeatCount: this.repeatCount,
repeatMode: this.repeatMode,
}
}
}