Reputation: 59
I'm using RadionButton
from react-native-paper
library. For android I have such style
Is it possible to set RadioButton
style in Adroid such as IOS style (icon "checked")? Thanks in andvance for your answer.
Upvotes: 0
Views: 2748
Reputation: 204
You can use the below code
<RadioButton.IOS
status={status}
onPress={onPress}
/>
more docs in here https://callstack.github.io/react-native-paper/radio-button-ios.html
Upvotes: 2