Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Last active March 2, 2016 07:02
Show Gist options
  • Save taisyo7333/9e37b830ddaa3cf12ce0 to your computer and use it in GitHub Desktop.
Save taisyo7333/9e37b830ddaa3cf12ce0 to your computer and use it in GitHub Desktop.
React Native Memo
react-native-sound のLoadは非同期。
<Image> using local image file
https://github.com/facebook/react-native/issues/751
<Image style={styles.hoge} source={{isStatic:true, uri:"/tmp/image/hoge.jpg"}} />
@taisyo7333
Copy link
Author

注意点としては、
ファイルロード処理が非同期になっています。
そのため、ロード直後に開始する関数を読んでも未ロードのため実行されません。
解決するには、ファイルロード(生成時)のコールバックに再生処理を登録すること。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment