1. `padding` of a TextView is ineffective, the dimension seems right, but the content is not placed correctly 2. the text (not the TextView) 'inherits' the background color, so it looks like there's an overlapped layer  it should look like this:  - RN v0.11.4 - Android 5.1.1 code: ``` <Text style={{ backgroundColor: 'rgba(100,230,100,.7)', padding: 25, color: 'white', fontWeight: 'bold', }} > Hello </Text> ```