(props)
| 18 | static DEFAULT_VISIBLE_OPTIONS = 8; |
| 19 | |
| 20 | constructor(props) { |
| 21 | super(props); |
| 22 | |
| 23 | autoBindReact(this); |
| 24 | |
| 25 | this.state = { optionHeight: 0 }; |
| 26 | } |
| 27 | |
| 28 | onOptionLayout(event) { |
| 29 | const { height } = event.nativeEvent.layout; |
nothing calls this directly
no outgoing calls
no test coverage detected