Skip to content

Commit

Permalink
fix: 垂直手势滑动阈值回退为7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VillagerTom committed Jul 13, 2024
1 parent cb0d79d commit de8cc37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugin/pl_player/view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ class _PLVideoPlayerState extends State<PLVideoPlayer>
setBrightness(result);
} else if (tapPosition < sectionWidth * 3) {
// 全屏
const double threshold = 10; // 滑动阈值
const double threshold = 7.0; // 滑动阈值
void fullScreenTrigger(bool status) async {
EasyThrottle.throttle(
'fullScreen', const Duration(milliseconds: 1000), () {
Expand Down

0 comments on commit de8cc37

Please sign in to comment.