mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
fix address book contact selection
Thank you @julian for the patch,
```
Index: lib/pages/send_view/send_view.dart
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/lib/pages/send_view/send_view.dart b/lib/pages/send_view/send_view.dart
--- a/lib/pages/send_view/send_view.dart (revision fa8829072e
)
+++ b/lib/pages/send_view/send_view.dart (date 1715103987498)
@@ -906,6 +906,10 @@
sendToController.text = _data!.contactLabel;
_address = _data!.address.trim();
_addressToggleFlag = true;
+
+ WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
+ _setValidAddressProviders(_address);
+ });
}
if (isPaynymSend) {
```
This commit is contained in:
parent
236e7d87fb
commit
c8691ac0cc
1 changed files with 4 additions and 0 deletions
|
@ -906,6 +906,10 @@ class _SendViewState extends ConsumerState<SendView> {
|
|||
sendToController.text = _data!.contactLabel;
|
||||
_address = _data!.address.trim();
|
||||
_addressToggleFlag = true;
|
||||
|
||||
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
|
||||
_setValidAddressProviders(_address);
|
||||
});
|
||||
}
|
||||
|
||||
if (isPaynymSend) {
|
||||
|
|
Loading…
Reference in a new issue