Any idea how can we pass the values that has a checked checkbox? like if I checked checkbox no: 1,2,3 and etc.. then pass these to the Text Input
We can store the selected (checked checkbox) values in a class variable, for e.g this.selectedItem = item; when check box is true. Now we can use selectedItem anyway and anywhere we want, but I need to store multiple values.
Need to pass multiple checked checkbox values to TextInput React Native.