12 lines
293 B
Swift
12 lines
293 B
Swift
import UIKit
|
|
|
|
public struct SplashScreenConfig {
|
|
var backgroundColor: UIColor?
|
|
var spinnerStyle: UIActivityIndicatorView.Style?
|
|
var spinnerColor: UIColor?
|
|
var showSpinner = false
|
|
var launchShowDuration = 500
|
|
var launchAutoHide = true
|
|
let launchFadeInDuration = 0
|
|
}
|