💄 Make port list scrollable
This commit is contained in:
@ -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(),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user