In React Native, borderRadius
is working but the background color given to the button stays a square. What is going on here?
JS
JavaScript
x
7
1
<TouchableHighlight
2
style={styles.submit}
3
onPress={() => this.submitSuggestion(this.props)}
4
underlayColor='#fff'>
5
<Text style={[this.getFontSize(),styles.submitText]}>Submit</Text>
6
</TouchableHighlight>
7
Style
JavaScript
1
18
18
1
2
submit:{
3
marginRight:40,
4
marginLeft:40,
5
marginTop:10,
6
},
7
submitText:{
8
paddingTop:20,
9
paddingBottom:20,
10
color:'#fff',
11
textAlign:'center',
12
backgroundColor:'#68a0cf',
13
borderRadius: 10,
14
borderWidth: 1,
15
borderColor: '#fff'
16
},
17
18
Advertisement
Answer
Try moving the button styling to the TouchableHighlight
itself:
Styles:
JavaScript
1
16
16
1
submit: {
2
marginRight: 40,
3
marginLeft: 40,
4
marginTop: 10,
5
paddingTop: 20,
6
paddingBottom: 20,
7
backgroundColor: '#68a0cf',
8
borderRadius: 10,
9
borderWidth: 1,
10
borderColor: '#fff',
11
},
12
submitText: {
13
color: '#fff',
14
textAlign: 'center',
15
}
16
Button (same):
JavaScript
1
7
1
<TouchableHighlight
2
style={styles.submit}
3
onPress={() => this.submitSuggestion(this.props)}
4
underlayColor='#fff'>
5
<Text style={[this.getFontSize(),styles.submitText]}>Submit</Text>
6
</TouchableHighlight>
7