react-native-fullwidth-image icon indicating copy to clipboard operation
react-native-fullwidth-image copied to clipboard

A responsive Image element that takes the full width of its parent element while maintaining aspect ratio

Results 2 react-native-fullwidth-image issues
Sort by recently updated
recently updated
newest added

Hello, a common pattern is to test components via their `testID` or `accessibilityLabel` attributes. Would it be possible to forward any other props like this to the `Image` component? Example...

Crashes on Android when using source={{uri: ...}} `Image.getSize(this.props.source.uri, (width, height) => {` needs to be `let source = this.props.source; ` `if (typeof(source) !== "string") { ` ` source = this.props.source.uri;...