thegamenicorus / react-native-flexi-radio-button

Simple and flexible Radio button for React Native App
https://www.npmjs.com/package/react-native-flexi-radio-button
MIT License
159 stars 64 forks source link

How to disable onSelect when radio old is selected #4

Closed enqtran closed 7 years ago

enqtran commented 7 years ago

I want to disable one RadioButton in list RadioGroup :) plz help, Thanks

thegamenicorus commented 7 years ago

disabled is released in 0.1.18

now, you can do this

<RadioGroup
    //....
>
    <RadioButton 
        disabled={true}
        //....
    >
       //...
    </RadioButton>
</RadioGroup>

Thank you for your request.