fix(player): adjust performance overlay padding

This commit is contained in:
Sam
2026-05-17 21:14:00 +02:00
parent 2c54baca34
commit 7e9f62dc7f
@@ -809,7 +809,7 @@ class _PlexVideoControlsState extends State<PlexVideoControls>
AnimatedPositioned(
duration: const Duration(milliseconds: 200),
curve: Curves.easeInOut,
top: _showControls && isMobile ? 80.0 : 16.0,
top: _showControls ? (isMobile ? 100.0 : 60.0) : 16.0,
left: 16,
child: AnimatedOpacity(
opacity: (!_autoHidePerformanceOverlay || _showControls || _forceShowControls) ? 1.0 : 0.0,