From 9ae9a2720651fca06a8a987a3938e186eb21c55b Mon Sep 17 00:00:00 2001 From: stonega Date: Sat, 6 Feb 2021 23:38:01 +0800 Subject: [PATCH] Fix player panel height issue. --- lib/home/home.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/home/home.dart b/lib/home/home.dart index c8f986f..4ef7874 100644 --- a/lib/home/home.dart +++ b/lib/home/home.dart @@ -259,12 +259,12 @@ class _HomeState extends State with SingleTickerProviderStateMixin { }), ], ), - Container(child: PlayerWidget(playerKey: _playerKey)), - ], - ), + Container(child: PlayerWidget(playerKey: _playerKey)), + ], ), ), ), + ), ); } }