Dima Kruhlyi
Dima Kruhlyi

Reputation: 59

RadioButton React Native Paper set IOS style in android

I'm using RadionButton from react-native-paper library. For android I have such style enter image description here

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

Answers (1)

Dinh Huynh
Dinh Huynh

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

Related Questions