Add paste option to address text field in new contact screen
OmarHatem28 committed
Jun 19, 2022 at 00:51 UTC
50740333713b59a0b581687e013e286488b2ee17
1 file changed
+4
-1
lib/src/screens/contact/contact_page.dart
+4
-1
@@ -94,7 +94,10 @@ class ContactPage extends BasePage {
94
child: Observer(
95
builder: (_) => AddressTextField(
96
controller: _addressController,
97
- options: [AddressTextFieldOption.qrCode],
97
+ options: [
98
+ AddressTextFieldOption.paste,
99
+ AddressTextFieldOption.qrCode,
100
+ ],
101
buttonColor: Theme.of(context).accentTextTheme.display2.color,
102
iconColor: PaletteDark.gray,
103
borderColor: Theme.of(context).primaryTextTheme.title.backgroundColor,