()
| 74 | }; |
| 75 | |
| 76 | const onPressBackward = () => { |
| 77 | if (sound.current) { |
| 78 | sound.current.getCurrentTime(sec => { |
| 79 | sound.current?.setCurrentTime(sec - 10); |
| 80 | }); |
| 81 | } |
| 82 | }; |
| 83 | |
| 84 | const onPressFastFoward = () => { |
| 85 | if (sound.current) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…