()
| 82 | }; |
| 83 | |
| 84 | const onPressFastFoward = () => { |
| 85 | if (sound.current) { |
| 86 | sound.current.getCurrentTime(sec => { |
| 87 | sound.current?.setCurrentTime(sec + 10); |
| 88 | }); |
| 89 | } |
| 90 | }; |
| 91 | |
| 92 | return ( |
| 93 | <SafeAreaView style={styles.container}> |
nothing calls this directly
no test coverage detected
searching dependent graphs…