Merge pull request 'Got rid of deprecated methods' (#191) from SEND019 into main
Some checks failed
ci/woodpecker/push/fx_oracle Pipeline is pending
ci/woodpecker/push/ledger Pipeline is pending
ci/woodpecker/push/mntx_gateway Pipeline is pending
ci/woodpecker/push/nats Pipeline is pending
ci/woodpecker/push/notification Pipeline is pending
ci/woodpecker/push/payments_orchestrator Pipeline is pending
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/frontend Pipeline failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline failed

Reviewed-on: #191
Reviewed-by: tech <tech.sendico@proton.me>
This commit was merged in pull request #191.
This commit is contained in:
2025-12-26 13:09:55 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ class WalletTopUpAddressBlock extends StatelessWidget {
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(dimensions.borderRadiusSmall),
border: Border.all(color: theme.colorScheme.outlineVariant),
color: theme.colorScheme.surfaceVariant.withOpacity(0.4),
color: theme.colorScheme.surfaceContainerHighest.withValues(alpha: 0.4),
),
child: SelectableText(
address,
@@ -72,7 +72,7 @@ class WalletTopUpAddressBlock extends StatelessWidget {
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(dimensions.borderRadiusSmall),
border: Border.all(color: theme.colorScheme.outlineVariant),
color: theme.colorScheme.surfaceVariant.withOpacity(0.4),
color: theme.colorScheme.surfaceContainerHighest.withValues(alpha: 0.4),
),
child: Center(
child: QrImageView(

View File

@@ -23,7 +23,7 @@ class WalletTopUpInfoChip extends StatelessWidget {
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(dimensions.borderRadiusSmall),
border: Border.all(color: theme.colorScheme.outlineVariant),
color: theme.colorScheme.surfaceVariant.withOpacity(0.4),
color: theme.colorScheme.surfaceContainerHighest.withValues(alpha: 0.4),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,