We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intention is to stop playback and reset the playhead back to the beginning. I started off dispatching two actions:
dispatch(actions.setPlayHead(id, .1)); dispatch(actions.pause(id));
This worked the first time I called it but failed subsequent times. See my other issue about this: #13
What ended up working great: dispatch(actions.pause(id, 0));
dispatch(actions.pause(id, 0));
Is this the best way to "Stop"? Suggestion: Perhaps a built in "Stop" component would be nice.
The text was updated successfully, but these errors were encountered:
This is the best way to stop.
A stop method that does this would be useful.
Sorry, something went wrong.
No branches or pull requests
Intention is to stop playback and reset the playhead back to the beginning.
I started off dispatching two actions:
This worked the first time I called it but failed subsequent times. See my other issue about this: #13
What ended up working great:
dispatch(actions.pause(id, 0));
Is this the best way to "Stop"?
Suggestion: Perhaps a built in "Stop" component would be nice.
The text was updated successfully, but these errors were encountered: