spelling: label
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
f851c5213a
commit
0fb8250000
@ -1436,7 +1436,7 @@ Widget _lock(
|
|||||||
|
|
||||||
_LabeledTextField(
|
_LabeledTextField(
|
||||||
BuildContext context,
|
BuildContext context,
|
||||||
String lable,
|
String label,
|
||||||
TextEditingController controller,
|
TextEditingController controller,
|
||||||
String errorText,
|
String errorText,
|
||||||
bool enabled,
|
bool enabled,
|
||||||
@ -1447,7 +1447,7 @@ _LabeledTextField(
|
|||||||
Expanded(
|
Expanded(
|
||||||
flex: 4,
|
flex: 4,
|
||||||
child: Text(
|
child: Text(
|
||||||
'${translate(lable)}:',
|
'${translate(label)}:',
|
||||||
textAlign: TextAlign.right,
|
textAlign: TextAlign.right,
|
||||||
style: TextStyle(color: _disabledTextColor(context, enabled)),
|
style: TextStyle(color: _disabledTextColor(context, enabled)),
|
||||||
),
|
),
|
||||||
|
@ -127,8 +127,8 @@ class _PortForwardPageState extends State<PortForwardPage>
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildTunnel(BuildContext context) {
|
buildTunnel(BuildContext context) {
|
||||||
text(String lable) => Expanded(
|
text(String label) => Expanded(
|
||||||
child: Text(translate(lable)).marginOnly(left: _kTextLeftMargin));
|
child: Text(translate(label)).marginOnly(left: _kTextLeftMargin));
|
||||||
|
|
||||||
return Theme(
|
return Theme(
|
||||||
data: Theme.of(context)
|
data: Theme.of(context)
|
||||||
@ -241,8 +241,8 @@ class _PortForwardPageState extends State<PortForwardPage>
|
|||||||
}
|
}
|
||||||
|
|
||||||
Widget buildTunnelDataRow(BuildContext context, _PortForward pf, int index) {
|
Widget buildTunnelDataRow(BuildContext context, _PortForward pf, int index) {
|
||||||
text(String lable) => Expanded(
|
text(String label) => Expanded(
|
||||||
child: Text(lable, style: const TextStyle(fontSize: 20))
|
child: Text(label, style: const TextStyle(fontSize: 20))
|
||||||
.marginOnly(left: _kTextLeftMargin));
|
.marginOnly(left: _kTextLeftMargin));
|
||||||
|
|
||||||
return Container(
|
return Container(
|
||||||
@ -285,11 +285,11 @@ class _PortForwardPageState extends State<PortForwardPage>
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildRdp(BuildContext context) {
|
buildRdp(BuildContext context) {
|
||||||
text1(String lable) => Expanded(
|
text1(String label) => Expanded(
|
||||||
child: Text(translate(lable)).marginOnly(left: _kTextLeftMargin));
|
child: Text(translate(label)).marginOnly(left: _kTextLeftMargin));
|
||||||
text2(String lable) => Expanded(
|
text2(String label) => Expanded(
|
||||||
child: Text(
|
child: Text(
|
||||||
lable,
|
label,
|
||||||
style: const TextStyle(fontSize: 20),
|
style: const TextStyle(fontSize: 20),
|
||||||
).marginOnly(left: _kTextLeftMargin));
|
).marginOnly(left: _kTextLeftMargin));
|
||||||
return Theme(
|
return Theme(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user