()
| 326 | const elevationLevel = [0, 3, 6, 9, 12, 15]; |
| 327 | |
| 328 | const getElevationAndroid = () => { |
| 329 | if (isAnimatedValue(elevation)) { |
| 330 | return elevation.interpolate({ |
| 331 | inputRange, |
| 332 | outputRange: elevationLevel, |
| 333 | }); |
| 334 | } |
| 335 | |
| 336 | return elevationLevel[elevation]; |
| 337 | }; |
| 338 | |
| 339 | const { margin, padding, transform, borderRadius } = (StyleSheet.flatten( |
| 340 | style |
no test coverage detected
searching dependent graphs…