feat: Refactor UI components and improve animations for onboarding and authentication flows

This commit is contained in:
2026-02-27 23:38:29 +05:00
parent 5f163af1d8
commit af1adc066e
14 changed files with 318 additions and 163 deletions

View File

@@ -74,13 +74,13 @@ private extension ConfirmSeedPhraseView {
VStack(spacing: 10) {
ForEach(0..<6, id: \.self) { index in
wordRow(seedIndex: index, displayNumber: index + 1)
.staggeredAppearance(index: index, baseDelay: 0.2, stagger: 0.04)
.staggeredAppearance(key: "confirmSeed", index: index, baseDelay: 0.2, stagger: 0.04)
}
}
VStack(spacing: 10) {
ForEach(6..<12, id: \.self) { index in
wordRow(seedIndex: index, displayNumber: index + 1)
.staggeredAppearance(index: index, baseDelay: 0.2, stagger: 0.04)
.staggeredAppearance(key: "confirmSeed", index: index, baseDelay: 0.2, stagger: 0.04)
}
}
}