mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-28 01:52:56 +03:00
Fixed run only once issue
This commit is contained in:
parent
3db69659d8
commit
c4b3ab9d87
@ -34,7 +34,6 @@ class PinAnimatedInput extends PureComponent {
|
||||
}
|
||||
|
||||
_startLoadingAnimation = () => {
|
||||
const { loading } = this.props;
|
||||
[...Array(4)].map((item, index) => {
|
||||
this.dots[index].setValue(0);
|
||||
});
|
||||
@ -44,8 +43,10 @@ class PinAnimatedInput extends PureComponent {
|
||||
duration: 250,
|
||||
easing: Easing.linear,
|
||||
})),
|
||||
]).start(() => {
|
||||
if (loading) this._startLoadingAnimation();
|
||||
]).start((o) => {
|
||||
if (o.finished) {
|
||||
this._startLoadingAnimation();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user