🐛 Fix port_connection_dialog not being scrollable
This commit is contained in:
@ -106,6 +106,7 @@ class _PortConnectionState extends State<PortConnectionDialog> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: min(MediaQuery.of(context).size.width, 400),
|
width: min(MediaQuery.of(context).size.width, 400),
|
||||||
|
child: SingleChildScrollView(
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
@ -127,6 +128,7 @@ class _PortConnectionState extends State<PortConnectionDialog> {
|
|||||||
label: const Text("New connection"))
|
label: const Text("New connection"))
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user