Skip to content

Commit

Permalink
fix: 修复部分手机横屏两侧不等宽
Browse files Browse the repository at this point in the history
  • Loading branch information
orz12 committed Jan 22, 2024
1 parent e4a85f3 commit f541dce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pages/video/detail/view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ class _VideoDetailPageState extends State<VideoDetailPage>
plPlayerController?.isFullScreen.value == true,
bottom: MediaQuery.of(context).orientation == Orientation.portrait &&
plPlayerController?.isFullScreen.value == true,
left: plPlayerController?.isFullScreen.value != true,
right: plPlayerController?.isFullScreen.value != true,
left: false,//plPlayerController?.isFullScreen.value != true,
right: false, //plPlayerController?.isFullScreen.value != true,
child: Stack(
children: [
Scaffold(
Expand Down

0 comments on commit f541dce

Please sign in to comment.