Search code examples
androidreact-nativeradio-buttonreact-native-paper

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.


Solution

  • 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