react-native-custom-radio-group
Version:
React native radio group with custom component
28 lines (27 loc) • 426 B
JavaScript
export default {
container: {
borderWidth: 3,
borderColor: '#339CFF',
borderRadius: 5,
alignItems: 'center',
justifyContent: 'center',
padding: 10,
width: 70
},
active: {
backgroundColor: '#33CAFF'
},
inactive: {
backgroundColor: '#FFF'
},
text: {
fontSize: 16
},
activeText: {
color: '#FFF',
fontWeight: 'bold'
},
inactiveText: {
color: '#000'
}
};