How to set hidden fields in redux form in react native?
问题 How to set hidden fields in redux form in react native ? i jsut cannot find any way on how to do that . any help? 回答1: i ended using this : this.props.dispatch(change("FORM_NAME","FIELD_NAME","VALUE")) after this code runs, the form will create the field if it does not exists 回答2: I have faced the same issue. What I do is to declare a Field like this and set the height to 0. It is a little bit hacky but it works in my case. <Field component={TextInput} name="departure_city_name" type="hidden"