mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-24 11:36:21 +00:00
Add paste option to address text field in new contact screen
This commit is contained in:
parent
2d4d5e031b
commit
5074033371
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