Skip to content

Commit

Permalink
5705
Browse files Browse the repository at this point in the history
  • Loading branch information
Velkonost committed Jan 30, 2024
1 parent 75e28a6 commit 934cc7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Binary file not shown.
10 changes: 5 additions & 5 deletions iosApp/iosApp/Features/Onboarding/OnboardingContent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct OnboardingContent: View {
.frame(width: 256, height: 256)
.scaleEffect(0.3)

Spacer().frame(height: 24)
Spacer().frame(height: 32)

if firstPointVisible {
OnboardingPoint(
Expand Down Expand Up @@ -98,9 +98,9 @@ struct OnboardingContent: View {

if buttonVisible {
AppButton(
labelText: step == 5 ? SharedR.strings().onboarding_btn.desc().localized() : SharedR.strings().continue_btn.desc().localized(),
labelText: SharedR.strings().onboarding_btn.desc().localized(),
isLoading: isLoading,
onClick: onNextClick
onClick: onSkipClick
)
}

Expand Down Expand Up @@ -165,8 +165,8 @@ struct OnboardingPoint: View {
Spacer()

}
.padding(.top, 12)
.padding(.horizontal, 32)
.padding(.top, 16)
.padding(.horizontal, 16)
.onAppear {
DispatchQueue.main.asyncAfter(deadline: .now() + 1.5 + 2.0 * Double(index)) {
withAnimation(.bouncy) {
Expand Down

0 comments on commit 934cc7d

Please sign in to comment.