mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
Merge pull request #386 from cake-tech/CW-99-add-paste-to-new-contact-address
Add paste option to new contact screen
This commit is contained in:
commit
6617b8afe5
1 changed files with 4 additions and 1 deletions
|
@ -94,7 +94,10 @@ class ContactPage extends BasePage {
|
|||
child: Observer(
|
||||
builder: (_) => AddressTextField(
|
||||
controller: _addressController,
|
||||
options: [AddressTextFieldOption.qrCode],
|
||||
options: [
|
||||
AddressTextFieldOption.paste,
|
||||
AddressTextFieldOption.qrCode,
|
||||
],
|
||||
buttonColor: Theme.of(context).accentTextTheme.display2.color,
|
||||
iconColor: PaletteDark.gray,
|
||||
borderColor: Theme.of(context).primaryTextTheme.title.backgroundColor,
|
||||
|
|
Loading…
Reference in a new issue