Reputation: 5192
I recently upgraded my React Native from 0.15
to 0.18
Now when I run the app, it give the following error.
Invalid prop `backgroundColor` supplied to `StyleSheet mainContainer`.
StyleSheet mainContainer: {
"justifyContent": "center",
"alignItems": "center",
"flexDirection": "row",
"backgroundColor": "#fffffff",
"marginBottom": -1
}
What is causing this?
Upvotes: 0
Views: 280
Reputation: 46
The color you specified as background color is incorrect and does not exist. There is one f
too many.
Either you can change it to:
"backgroundColor": "#ffffff",
Or you can also specify the white background color like this:
"backgroundColor": "white",
Here is an overview of all the supported color formats in React Native. You can also find the list for named colors there. http://facebook.github.io/react-native/docs/colors.html
Upvotes: 3
Reputation: 82219
You have seven f characters in your background color rather than six - i.e it is invalid.
Try "backgroundColor": "#ffffff"
Upvotes: 0