I am converting React code to React Native. So I need to implement radio buttons.
You can use react-native-radio-input. Its very simple to use.
import RadioGroup,{Radio} from "react-native-radio-input"; . . . //Receive the checked value (ES6 syntax) getChecked = (value) => { // value = our checked value alert(value) } . .