From 6f1a76974179d80a6b14934b053f2a1c79f8f8c7 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sat, 22 Feb 2025 20:01:52 -0500 Subject: [PATCH] fix: source typo in flutter/lib/common/widgets/address_book.dart (#10884) Found via codespell --- flutter/lib/common/widgets/address_book.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flutter/lib/common/widgets/address_book.dart b/flutter/lib/common/widgets/address_book.dart index deed97bb3..6a3cec8ad 100644 --- a/flutter/lib/common/widgets/address_book.dart +++ b/flutter/lib/common/widgets/address_book.dart @@ -509,13 +509,13 @@ class _AddressBookState extends State { double marginBottom = 4; - row({required Widget lable, required Widget input}) { + row({required Widget label, required Widget input}) { makeChild(bool isPortrait) => Row( children: [ !isPortrait ? ConstrainedBox( constraints: const BoxConstraints(minWidth: 100), - child: lable.marginOnly(right: 10)) + child: label.marginOnly(right: 10)) : SizedBox.shrink(), Expanded( child: ConstrainedBox( @@ -535,7 +535,7 @@ class _AddressBookState extends State { Column( children: [ row( - lable: Row( + label: Row( children: [ Text( '*', @@ -558,7 +558,7 @@ class _AddressBookState extends State { errorMaxLines: 5), ).workaroundFreezeLinuxMint())), row( - lable: Text( + label: Text( translate('Alias'), style: style, ), @@ -573,7 +573,7 @@ class _AddressBookState extends State { ), if (isCurrentAbShared) row( - lable: Text( + label: Text( translate('Password'), style: style, ),