react-native-text-ticker
Advanced tools
Comparing version 1.5.0 to 1.6.0
@@ -329,6 +329,8 @@ import React, { PureComponent } from 'react' | ||
scrollEnd = () => { | ||
const { marqueeDelay } = this.props | ||
this.setTimeout(() => { | ||
this.setState({ isScrolling: false }) | ||
this.start() | ||
}, this.props.marqueeDelay || 3000) | ||
}, marqueeDelay >= 0 ? marqueeDelay : 3000) | ||
} | ||
@@ -335,0 +337,0 @@ |
{ | ||
"name": "react-native-text-ticker", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"description": "React Native Text Ticker/Marquee Component", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
20198
412