Last active
March 2, 2016 07:02
-
-
Save taisyo7333/9e37b830ddaa3cf12ce0 to your computer and use it in GitHub Desktop.
React Native Memo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"}} /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
注意点としては、
ファイルロード処理が非同期になっています。
そのため、ロード直後に開始する関数を読んでも未ロードのため実行されません。
解決するには、ファイルロード(生成時)のコールバックに再生処理を登録すること。