You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 15, 2025. It is now read-only.
// If media loaded, render full image component, else render placeholder.
184
184
if(this.state.localFilePath){
185
185
186
+
// Build platform specific file resource uri.
187
+
constlocalFileUri=(Platform.OS=='ios') ? this.state.localFilePath : 'file://'+this.state.localFilePath;// Android requires the traditional 3 prefixed slashes file:/// in a localhost absolute file uri.
188
+
186
189
// Extract props proprietary to this HOC before passing props through.
0 commit comments