💄 Make port list scrollable
This commit is contained in:
@ -44,7 +44,8 @@ class _PortsTabState extends State<PortsTab> {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Padding(
|
return SingleChildScrollView(
|
||||||
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [...widget.mixerState.inputs, ...widget.mixerState.outputs]
|
children: [...widget.mixerState.inputs, ...widget.mixerState.outputs]
|
||||||
@ -90,6 +91,7 @@ class _PortsTabState extends State<PortsTab> {
|
|||||||
)
|
)
|
||||||
.toList(),
|
.toList(),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user