🐛 Fix port_connection_dialog not being scrollable

This commit is contained in:
2024-08-29 22:53:50 +02:00
parent 02882871b9
commit 7f6772888a

View File

@ -106,6 +106,7 @@ class _PortConnectionState extends State<PortConnectionDialog> {
Widget build(BuildContext context) {
return SizedBox(
width: min(MediaQuery.of(context).size.width, 400),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.stretch,
@ -127,6 +128,7 @@ class _PortConnectionState extends State<PortConnectionDialog> {
label: const Text("New connection"))
],
),
),
);
}
}