From f9f6b75dc324c126c5f298bb9e9dc82f2e0a4d7c Mon Sep 17 00:00:00 2001 From: CryptoFish Date: Sun, 28 May 2023 12:22:37 +0200 Subject: [PATCH] Set state when beneficiary address changes --- .../plasma_widgets/plasma_options/plasma_options.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/widgets/modular_widgets/plasma_widgets/plasma_options/plasma_options.dart b/lib/widgets/modular_widgets/plasma_widgets/plasma_options/plasma_options.dart index 7a0cd71b..1426eaa0 100644 --- a/lib/widgets/modular_widgets/plasma_widgets/plasma_options/plasma_options.dart +++ b/lib/widgets/modular_widgets/plasma_widgets/plasma_options/plasma_options.dart @@ -132,6 +132,8 @@ class _PlasmaOptionsState extends State { void _beneficiaryAddressListener() { _beneficiaryAddressController.text = _plasmaBeneficiaryAddress!.getBeneficiaryAddress()!; + // Notify internal state has changed. + setState(() { }); } Widget _getWidgetBody(AccountInfo? accountInfo) {