D8675309: Fix border radius / background propagation issues in TicTacToe example
Summary:**Description** This PR removes the `borderRadius` from cell text in the TicTacToe example app. `jollygood` `starshipit` **Test Plan** Before the removal of `borderRadius`, background propagation created dark gray corners on the `<Text />` nodes. After the removal, the corners are no longer rounded and the background propagation bug doesn't appear. ![Before](https://cloud.githubusercontent.com/assets/241156/13231035/2fce8f9a-d9a8-11e5-9c61-b7246d146f77.png) ![After](https://cloud.githubusercontent.com/assets/241156/13231042/33c09e18-d9a8-11e5-9126-d0820865253b.png) Closes https://github.com/facebook/react-native/pull/6093 Differential Revision: D3173586 Pulled By: mkonicek fb-gh-sync-id: b64be5c8c9ac899eead9cea33fc7c6c94728f114 fbshipit-source-id: b64be5c8c9ac899eead9cea33fc7c6c94728f114
This commit is contained in:
parent
fa142858df
commit
97f60ad974
|
@ -272,7 +272,6 @@ var styles = StyleSheet.create({
|
|||
// CELL TEXT
|
||||
|
||||
cellText: {
|
||||
borderRadius: 5,
|
||||
fontSize: 50,
|
||||
fontFamily: 'AvenirNext-Bold',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue