alwx / react-native-photo-view

Pinch-to-zoom view for React Native (both iOS and Android)
MIT License
815 stars 434 forks source link

loadingIndicatorSource not working #47

Open cbjs opened 7 years ago

cbjs commented 7 years ago

loadingIndicatorSource={rquire('../assets/loading.gif')}

is this right?

u-kan commented 7 years ago

@cbjs

I think you have typo with "rquire(...)"

it should be like below I guess..

loadingIndicatorSource={require('../assets/loading.gif')}

cbjs commented 7 years ago

@KanUchida thanks