Is this a bug report?
Yes
Yes
Environment
Environment:
OS: macOS Sierra 10.12.6
Node: 6.11.4
Yarn: Not Found
npm: 3.10.10
Watchman: 4.9.0
Xcode: Xcode 8.3.3 Build version 8E3004b
Android Studio: Not Found
Packages: (wanted => installed)
react: 16.0.0-beta.5 => 16.0.0-beta.5
react-native: 0.53.0 => 0.53.0
Target Platform: Android (22)
Steps to Reproduce
Create a simple view:
export default class App extends Component {
render() {
return (
<View style={styles.background}>
<View style={styles.container}>
<Text>Welcome to React Native!</Text>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
background: {
backgroundColor: 'purple',
flex: 1
},
container: {
position: 'absolute',
left: 100,
top: 100,
width: 200,
height: 100,
backgroundColor: 'orange',
borderWidth: 2,
borderColor: 'orange',
borderRadius: 50,
justifyContent: 'center',
alignItems: 'center'
}
});
Expected Behavior
I would expect that the border does not render in a strange and pixelated way. Previously in react-native 0.49.5, the exact same code would render like so:

Actual Behavior
In react-native 0.53.0, that same code renders this blurry border:

Reproducible Demo
The code snippet above compiles and should be sufficient to reproduce this problem.
Is this a bug report?
Yes
Have you read the Contributing Guidelines?
Yes
Environment
Environment:
OS: macOS Sierra 10.12.6
Node: 6.11.4
Yarn: Not Found
npm: 3.10.10
Watchman: 4.9.0
Xcode: Xcode 8.3.3 Build version 8E3004b
Android Studio: Not Found
Packages: (wanted => installed)
react: 16.0.0-beta.5 => 16.0.0-beta.5
react-native: 0.53.0 => 0.53.0
Target Platform: Android (22)
Steps to Reproduce
Create a simple view:
Expected Behavior
I would expect that the border does not render in a strange and pixelated way. Previously in react-native 0.49.5, the exact same code would render like so:
Actual Behavior
In react-native 0.53.0, that same code renders this blurry border:
Reproducible Demo
The code snippet above compiles and should be sufficient to reproduce this problem.