Files
lockdown-iOS-mirror/LockdowniOS/OnboardingConfiguration.swift
Alexander Parshakov 2bc6adf847 Release 1.6.1
2023-01-10 21:17:38 +05:00

24 lines
640 B
Swift

//
// OnboardingConfiguration.swift
// Lockdown
//
// Created by Alexander Parshakov on 9/28/22
// Copyright © 2022 Confirmed Inc. All rights reserved.
//
import Foundation
struct OnboardingConfiguration {
/// How often the onboarding page progress bar is updated.
let timerInterval: TimeInterval
/// How long the onboarding page text and gradient are updated.
let contentAnimationDuration: Double
init(timerInterval: TimeInterval = 0.05, contentAnimationDuration: Double = 0.3) {
self.timerInterval = timerInterval
self.contentAnimationDuration = contentAnimationDuration
}
}