mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +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(
|
child: Observer(
|
||||||
builder: (_) => AddressTextField(
|
builder: (_) => AddressTextField(
|
||||||
controller: _addressController,
|
controller: _addressController,
|
||||||
options: [AddressTextFieldOption.qrCode],
|
options: [
|
||||||
|
AddressTextFieldOption.paste,
|
||||||
|
AddressTextFieldOption.qrCode,
|
||||||
|
],
|
||||||
buttonColor: Theme.of(context).accentTextTheme.display2.color,
|
buttonColor: Theme.of(context).accentTextTheme.display2.color,
|
||||||
iconColor: PaletteDark.gray,
|
iconColor: PaletteDark.gray,
|
||||||
borderColor: Theme.of(context).primaryTextTheme.title.backgroundColor,
|
borderColor: Theme.of(context).primaryTextTheme.title.backgroundColor,
|
||||||
|
|
Loading…
Reference in a new issue