mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-08 20:09:24 +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,
|
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
||||||
boxShadow: [
|
boxShadow: [
|
||||||
BoxShadow(
|
BoxShadow(
|
||||||
color: Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor
|
color: Theme.of(context)
|
||||||
|
.extension<BalancePageTheme>()!
|
||||||
|
.cardBorderColor
|
||||||
.withAlpha(50),
|
.withAlpha(50),
|
||||||
spreadRadius: 3,
|
spreadRadius: 3,
|
||||||
blurRadius: 7
|
blurRadius: 7)
|
||||||
)
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
child: Container(
|
child: Container(
|
||||||
|
@ -339,11 +340,12 @@ class BalanceRowWidget extends StatelessWidget {
|
||||||
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
||||||
boxShadow: [
|
boxShadow: [
|
||||||
BoxShadow(
|
BoxShadow(
|
||||||
color: Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor
|
color: Theme.of(context)
|
||||||
|
.extension<BalancePageTheme>()!
|
||||||
|
.cardBorderColor
|
||||||
.withAlpha(50),
|
.withAlpha(50),
|
||||||
spreadRadius: 3,
|
spreadRadius: 3,
|
||||||
blurRadius: 7
|
blurRadius: 7)
|
||||||
)
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
child: Container(
|
child: Container(
|
||||||
|
|
Loading…
Reference in a new issue