有没有办法在整个按钮内部和外部着色?因为现在如此,所以它的外部和内部的颜色是白色的,但是我希望它也将是白色的。
我使用react-native-simple-radio-button
,并且您可以看到链接。.the link
import RadioForm, {
RadioButton,
RadioButtonInput,
RadioButtonLabel,
} from 'react-native-simple-radio-button';
<RadioForm
buttonColor={'white'}
animation={true}
labelHorizontal={true}
labelStyle={{
fontSize: 18,
left: 15,
color: 'white',
}}
buttonSize={20}
radio_props={sort_radio_props}
initial={3}
onPress={(value) => {
setSortRadio({ value: value });
}}
/>
答案 0 :(得分:1)
使用RadioForm时,您可以设置selectedButtonColor属性
示例:selectedButtonColor ='白色'