Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import {
  2. NativeModules,
  3. } from 'react-native';
  4.  
  5. const { AudioManager } = NativeModules;
  6.  
  7. async function setPlaying (shouldPlay: boolean) => {
  8. const isPlayingNativeResult = await AudioManager.setPlaying(shouldPlay);
  9. // do something with the native result
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement