Fix background color issue

Differential Revision: D2489578

committer: Service User <svcscm@fb.com>
This commit is contained in:
Andrei Coman
2015-09-29 09:12:19 -07:00
committed by facebook-github-bot-4
parent 3a664a0008
commit 3b6d029a55
3 changed files with 19 additions and 2 deletions

View File

@@ -221,6 +221,13 @@ exports.examples = [
style={styles.singleLine}
underlineColorAndroid="blue"
/>
<TextInput
defaultValue="Same BackgroundColor as View "
style={[styles.singleLine, {backgroundColor: 'rgba(100, 100, 100, 0.3)'}]}>
<Text style={{backgroundColor: 'rgba(100, 100, 100, 0.3)'}}>
Darker backgroundColor
</Text>
</TextInput>
</View>
);
}