removed SizedBox

This commit is contained in:
NicKoehler 2023-02-09 13:36:48 +01:00
parent fa28dd3ab9
commit 15a8460fcd
No known key found for this signature in database
GPG Key ID: BAE01394EB51AC58

View File

@ -179,9 +179,7 @@ class _PortForwardPageState extends State<PortForwardPage>
buildTunnelInputCell(context,
controller: remotePortController,
inputFormatters: portInputFormatter),
SizedBox(
width: _kColumn4Width,
child: ElevatedButton(
ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 0, side: const BorderSide(color: MyTheme.border)),
onPressed: () async {
@ -208,7 +206,6 @@ class _PortForwardPageState extends State<PortForwardPage>
translate('Add'),
),
).marginAll(10),
),
]),
);
}