Questions tagged [nativemethodsmixin]

2 questions
11
votes
2 answers

React Native - How to measure size of content in ScrollView?

I want to measure the size of the content in my ScrollView. Therefore, I am using measure from NativeMethodsMixin: import NativeMethodsMixin from 'NativeMethodsMixin' I am not quite sure where to go from here, most SO posts relating to this issue…
nburk
  • 22,409
  • 18
  • 87
  • 132
1
vote
1 answer

Measure height of react-native ref (ListView)

How can you measure the height of a react-native element if you only have the ref? I see NativeMethodsMixin but it's not clear how to implement it. I've tried including it as: import { NativeMethodsMixin } from 'react-native'; class Foo extends…