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: [
for (var i = 0; i < AudioPlayerWidget.wavesCount; i++)
Expanded(
child: InkWell(
onTap: () => audioPlayer?.seek(
child: GestureDetector(
onTapDown: (_) => audioPlayer?.seek(
Duration(
milliseconds:
(maxPosition / AudioPlayerWidget.wavesCount)

Loading…
Cancel
Save