mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-08 03:49:43 +00:00
Fix formatting [skip ci]
This commit is contained in:
parent
229c6c08fe
commit
dc7409b64c
3 changed files with 115 additions and 113 deletions
|
@ -77,11 +77,12 @@ class BalanceRowWidget extends StatelessWidget {
|
|||
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
||||
boxShadow: [
|
||||
BoxShadow(
|
||||
color: Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor
|
||||
color: Theme.of(context)
|
||||
.extension<BalancePageTheme>()!
|
||||
.cardBorderColor
|
||||
.withAlpha(50),
|
||||
spreadRadius: 3,
|
||||
blurRadius: 7
|
||||
)
|
||||
blurRadius: 7)
|
||||
],
|
||||
),
|
||||
child: Container(
|
||||
|
@ -339,11 +340,12 @@ class BalanceRowWidget extends StatelessWidget {
|
|||
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
||||
boxShadow: [
|
||||
BoxShadow(
|
||||
color: Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor
|
||||
color: Theme.of(context)
|
||||
.extension<BalancePageTheme>()!
|
||||
.cardBorderColor
|
||||
.withAlpha(50),
|
||||
spreadRadius: 3,
|
||||
blurRadius: 7
|
||||
)
|
||||
blurRadius: 7)
|
||||
],
|
||||
),
|
||||
child: Container(
|
||||
|
|
Loading…
Reference in a new issue