react-native-fullwidth-image
react-native-fullwidth-image copied to clipboard
A responsive Image element that takes the full width of its parent element while maintaining aspect ratio
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;...