Daniel Dimitrov
Daniel Dimitrov
@cklinx - this bug report has nothing to do with tracksViewChanges. If you look at the example code you'll see that tracksViewChanges is already set to false: https://github.com/compojoom/react-native-maps/blob/d60402e2c62f26f3be91023381bdb0cafc9c8318/example/examples/CustomMarkers.js#L73
@tomtom94 - In my demo I'm reproducing this with a Text element. In the app, where I have the problem I have a custom component that renders the contents -...
Is this supposed to only work on the same field or can we combine multiple fields like: `where: {hat_in: ["bucket", "Cowboy"] OR shoe: "46"}`
@DylanVann - Actually, most probably the case is pretty common as most apps out there offer the option of sharing an image. I currently re-download the image... I would of...
anyone? @alvaromb @gcanti ?
@vendramini - I don't know for @eliasturbay, but I didn't get it. I've already made some progress with multiple-selection, but as I wrote here: https://github.com/gcanti/tcomb-form-native/issues/382 - I'm failing at the...
I just solved this in the most stupid way possible. I would be happy if someone could point me to a better solution. So I have my enums property and...
I "solved" it with this: ```js export const MultiSelectTransformer = { format: value => { return Array.isArray(value) ? value : [] }, parse: value => { // Just trick it...
You would need to know the path. The tcomb-form docs have a section about that: https://github.com/gcanti/tcomb-form/blob/master/GUIDE.md#accessing-fields ` this.refs.form.getComponent(path).validate();`