react-native-image-sequence icon indicating copy to clipboard operation
react-native-image-sequence copied to clipboard

native implementation for creating frame based image animations

Results 28 react-native-image-sequence issues
Sort by recently updated
recently updated
newest added

IMPORTANT: This PR relies on PR #33. When I build the Android version of an application I'm developing that is using react-native-image-sequence, I get the following notes during the Gradle...

I had an issue where sequences containing a large amount of frames (150+) would fail to start on Android. Turned out to be an issue with the default queue where...

This PR adds the ability to downsample images within the native code during the loading process. The documentation I've added as part of this PR describes why this feature is...

`const images = [ { uri: '/data/user/0/com.camapp/cache/Camera/image-1.jpg' }, { uri: '/data/user/0/com.camapp/cache/Camera/image-2.jpg' } ];`

I'd like to be able to have the animation pause. So the animation will play all its frames and then pause for a defined period of time. Would also be...

When I build the Android version of an application I'm developing that is using react-native-image-sequence, I get the following warnings during the Gradle build stage: ``` > Configure project :react-native-image-sequence...

Consider the following example Screen one ``` class LoadingScreen extends React.Component { componentDidMount() { setTimeout(() => { if (this.props.hasLoggedIn && this.props.hasDevices) { this.props.navigation.navigate("Main"); } else if (this.props.hasLoggedIn && !this.props.hasDevices) {...

i use pod to manager ios third libraries(include react.),but when i react-native link react-native-image-sequence,then i can't build pass, tell me can't find,even i link react-native-image-sequence myself,the error is also. ![snip20171204_11](https://user-images.githubusercontent.com/13290201/33549158-8e5ee078-d924-11e7-9d05-04a1f2efd15b.png)

Significantly improve performance if add animation in scrollview

Not really an issue, but is there anyway to make this work with file uri's? I've tried several approaches but they all end up blank without throwing an error. `const...