We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a30097 commit d0a10adCopy full SHA for d0a10ad
1 file changed
lib/hooks/use_gesture.dart
@@ -103,11 +103,11 @@ Gesture useGesture({
103
if (tapDx > screenWidth * 0.75) {
104
// 右侧 25%
105
showProgress();
106
- player.forward(10);
+ player.forward(5);
107
} else if (tapDx < screenWidth * 0.25) {
108
// 左侧 25%
109
110
- player.backward(10);
+ player.backward(5);
111
} else {
112
// 中间 50%
113
if (player.isPlaying) {
0 commit comments