Is it possible to use react-toggle with Redux form?
react-toggle renders a toggle like so:
<Toggle
icons={false}
onChange={this.handleToggleChange}
/>
Given a redux-form Field component like so:
<Field
name="email_newsletter"
id="email_newsletter"
component="input"
type="checkbox"
/>
How can react-toggle update the value for the redux-form Field?
You can define a custom renderer like this:
and set it to the
component
prop of theField
component:Warning: according to the value prop documentation, the
value
type need to be defined.So you need to define also initial value for your checkbox in your redux-form.
You will find more details in the Redux-Form Field documentation