Close
- Redux Form
- FAQ
- Does
redux-form
work with React Native?
Does redux-form
work with React Native?
Yes, it does.
If your are using all react-native@18+
, redux@4+
and npm@3+
Just import it as usual:
import {reduxForm} from 'redux-form';
Else
All you have to do is use:
import {reduxForm} from 'redux-form/native';
instead of
import {reduxForm} from 'redux-form';
Note:
react-redux/native
is deprecated in react-redux@4+
, it only appears in react-redux@3