(height)
| 74 | } |
| 75 | |
| 76 | resolveListViewStyle(height) { |
| 77 | const { style } = this.props; |
| 78 | |
| 79 | const { bufferHeight } = this.getKeyAreaHeights(height); |
| 80 | |
| 81 | return { |
| 82 | listContent: { |
| 83 | backgroundColor: style.modal.backgroundColor, |
| 84 | paddingVertical: bufferHeight, |
| 85 | justifyContent: 'center', |
| 86 | }, |
| 87 | }; |
| 88 | } |
| 89 | |
| 90 | calculateListViewHeight(optionHeight) { |
| 91 | const { optionHeight: existingHeight } = this.state; |
no test coverage detected