💄 Make port list scrollable

This commit is contained in:
2024-07-03 10:24:25 +02:00
parent 639527a49a
commit eae7440bb3

View File

@ -44,7 +44,8 @@ class _PortsTabState extends State<PortsTab> {
@override
Widget build(BuildContext context) {
return Padding(
return SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: [...widget.mixerState.inputs, ...widget.mixerState.outputs]
@ -90,6 +91,7 @@ class _PortsTabState extends State<PortsTab> {
)
.toList(),
),
),
);
}
}