You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've implemented it, but have no idea how to make PR's (or operate git). Could this be considered?
When enableSeekGesture is set as true, this will move the playhead position even when playback is paused or stopped. Currently only moves playhead position whilst in a playing state.
audio_file_waveform.dart L214
onTapDown: (details) async {
if (widget.enableSeekGesture) {
final _maxDuration =await widget.playerController.getDuration();
_audioProgress = details.localPosition.dx / widget.size.width;
setState(() {});
}
},
Cheers
The text was updated successfully, but these errors were encountered:
I've implemented it, but have no idea how to make PR's (or operate git). Could this be considered?
When
enableSeekGesture
is set astrue
, this will move the playhead position even when playback is paused or stopped. Currently only moves playhead position whilst in a playing state.audio_file_waveform.dart L214
Cheers
The text was updated successfully, but these errors were encountered: