Bug fix. Initial height can now be set properly through a custom valueNotifier.

This commit is contained in:
David 2020-10-09 20:40:09 +02:00
parent 9c944d6230
commit 4d7cf69126
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class _MiniplayerState extends State<Miniplayer> with TickerProviderStateMixin {
_resetAnimationController();
_dragHeight = widget.minHeight;
_dragHeight = heightNotifier.value;
if (widget.controller != null) {
widget.controller.addListener(() {