1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00

Avoid too big dialog

This commit is contained in:
Pierre HUBERT 2021-03-11 20:20:41 +01:00
parent 3518594eea
commit 46affd4e68

View File

@ -69,7 +69,7 @@ class __AudioPlayerDialogState extends State<_AudioPlayerDialog> {
}
Widget _buildContent() => ConstrainedBox(
constraints: BoxConstraints(maxHeight: 300, maxWidth: 500),
constraints: BoxConstraints(maxHeight: 50, maxWidth: 500),
child: AsyncScreenWidget(
onReload: _initialize,
onBuild: _buildReadyContent,