chore: Change way how to seek in audioplayer

pull/624/head
Krille 2 years ago
parent 9b523b00a6
commit 0490195f44
No known key found for this signature in database

@ -223,8 +223,8 @@ class AudioPlayerState extends State<AudioPlayerWidget> {
children: [ children: [
for (var i = 0; i < AudioPlayerWidget.wavesCount; i++) for (var i = 0; i < AudioPlayerWidget.wavesCount; i++)
Expanded( Expanded(
child: InkWell( child: GestureDetector(
onTap: () => audioPlayer?.seek( onTapDown: (_) => audioPlayer?.seek(
Duration( Duration(
milliseconds: milliseconds:
(maxPosition / AudioPlayerWidget.wavesCount) (maxPosition / AudioPlayerWidget.wavesCount)

Loading…
Cancel
Save