Hi, I came here looking for an answer, I need to measure a custom component, but in react native you don't get the method .measure unless it's a native UI component as far as I understand from this:
The methods described here are available on most of the default components provided by React Native. Note, however, that they are not available on composite components that aren't directly backed by a native view. This will generally include most components that you define in your own app.
measure(callback)
... my question is: Making a Bridged (as in this tutorial) component will make it get .measure method? I'd like to know before learning to do this so at least i won't have false expectations...
thank you!