mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
rotateArrows color
This commit is contained in:
parent
e784722c8b
commit
992bf5de9b
2 changed files with 32 additions and 2 deletions
|
@ -136,7 +136,22 @@ class _RestoringDialogState extends State<ClaimingPaynymDialog>
|
|||
icon: RotateAnimation(
|
||||
lottie: Lottie.asset(
|
||||
Assets.lottie.arrowRotate,
|
||||
// delegates: LottieDelegates(values: []),
|
||||
delegates: LottieDelegates(
|
||||
values: [
|
||||
ValueDelegate.color(
|
||||
const ["**"],
|
||||
value: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.accentColorDark,
|
||||
),
|
||||
ValueDelegate.strokeColor(
|
||||
const ["**"],
|
||||
value: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.accentColorDark,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
curve: Curves.easeInOutCubic,
|
||||
controller: _rotateAnimationController,
|
||||
|
|
|
@ -93,7 +93,22 @@ class _RestoringDialogState extends State<BuildingTransactionDialog>
|
|||
RotateAnimation(
|
||||
lottie: Lottie.asset(
|
||||
Assets.lottie.arrowRotate,
|
||||
// delegates: LottieDelegates(values: []),
|
||||
delegates: LottieDelegates(
|
||||
values: [
|
||||
ValueDelegate.color(
|
||||
const ["**"],
|
||||
value: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.accentColorDark,
|
||||
),
|
||||
ValueDelegate.strokeColor(
|
||||
const ["**"],
|
||||
value: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.accentColorDark,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
curve: Curves.easeInOutCubic,
|
||||
controller: _rotateAnimationController,
|
||||
|
|
Loading…
Reference in a new issue