disable frost send all button

This commit is contained in:
julian 2024-05-02 11:06:42 -06:00
parent a858e4924c
commit 4b4647e02c

View file

@ -373,13 +373,15 @@ class _RecipientState extends ConsumerState<Recipient> {
style: STextStyles.smallMed12(context),
textAlign: TextAlign.left,
),
CustomTextButton(
text: "Send all ${widget.coin.ticker.toUpperCase()}",
onTap: () {
amountController.text = widget.sendAllTapped();
_cryptoAmountChanged();
},
),
// disable send all since the frost tx creation logic isn't there (yet?)
const Spacer(),
// CustomTextButton(
// text: "Send all ${widget.coin.ticker}",
// onTap: () {
// amountController.text = widget.sendAllTapped();
// _cryptoAmountChanged();
// },
// ),
],
),
if (isSingle)