Q:

react native radio buttons

import RadioForm, {RadioButton, RadioButtonInput, RadioButtonLabel} from 'react-native-simple-radio-button';  var radio_props = [  {label'param1'value0 },  {label'param2'value1 }]; var RadioButtonProject = React.createClass({  getInitialStatefunction({    return {      value0,    }  },  renderfunction({    return (      <View>        <RadioForm          radio_props={radio_props}          initial={0}          onPress={(value) => {this.setState({value:value})}}        />      </View>    );  }});
1

New to Communities?

Join the community