(props)
| 16 | |
| 17 | class ExampleB extends React.Component { |
| 18 | constructor (props) { |
| 19 | super(props) |
| 20 | this.state = { |
| 21 | selected: '' |
| 22 | } |
| 23 | this.handlePress = this.handlePress.bind(this) |
| 24 | this.showActionSheet = this.showActionSheet.bind(this) |
| 25 | } |
| 26 | |
| 27 | showActionSheet () { |
| 28 | this.ActionSheet.show() |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…