mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Avoid too big dialog
This commit is contained in:
parent
3518594eea
commit
46affd4e68
@ -69,7 +69,7 @@ class __AudioPlayerDialogState extends State<_AudioPlayerDialog> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildContent() => ConstrainedBox(
|
Widget _buildContent() => ConstrainedBox(
|
||||||
constraints: BoxConstraints(maxHeight: 300, maxWidth: 500),
|
constraints: BoxConstraints(maxHeight: 50, maxWidth: 500),
|
||||||
child: AsyncScreenWidget(
|
child: AsyncScreenWidget(
|
||||||
onReload: _initialize,
|
onReload: _initialize,
|
||||||
onBuild: _buildReadyContent,
|
onBuild: _buildReadyContent,
|
||||||
|
Loading…
Reference in New Issue
Block a user