fix: show Controls progress bar during drag instead of full overlay

This commit is contained in:
систем
2026-04-10 21:51:03 +08:00
parent e40a72f8c9
commit 18ecda3379
3 changed files with 15 additions and 16 deletions

View File

@@ -65,7 +65,8 @@ class BottomControl extends StatelessWidget {
padding: const EdgeInsets.fromLTRB(10, 0, 10, 7),
child: Obx(
() => Offstage(
offstage: !controller.showControls.value,
offstage: !controller.showControls.value &&
!controller.isDraggingProgress.value,
child: Stack(
clipBehavior: Clip.none,
alignment: Alignment.bottomCenter,