(props)
| 15 | } |
| 16 | |
| 17 | constructor (props) { |
| 18 | super(props) |
| 19 | this.scrollEnabled = false |
| 20 | this.translateY = this._calculateHeight(props) |
| 21 | this.state = { |
| 22 | visible: false, |
| 23 | sheetAnim: new Animated.Value(this.translateY) |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | componentWillReceiveProps (nextProps) { |
| 28 | this.translateY = this._calculateHeight(nextProps) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…