Hi, I am still new to the wrapper. I am using the latest beta versions of both redux-form-material-ui and material-ui. The following only shows two radio buttons and they work well, just wondering why it does not show the two words ('male' and 'female') show...
<Field` name="gender" component={RadioGroup}>
<Radio value='male' label="male" />
<Radio value='female' label="female" />
</Field>

<Field` name="sex" component={RadioGroup}>
<FormControlLabel value="male" control={<Radio />} label="male" />
<FormControlLabel value="female" control={<Radio />} label="female" />
</Field>
Finally had to use this alternative.....
Most helpful comment
Finally had to use this alternative.....