SplashScreenInfo

public struct SplashScreenInfo

This structure takes the splash screen information for the application

  • This parameter takes the copyright text which needs to be shown on the splash screen of the app

    Declaration

    Swift

    public var copyrightInfoText: String
  • This parameter takes the gif image for light mode which needs to be shown on the splash screen of the app

    Declaration

    Swift

    public var splashScreenGifLightMode: String
  • This parameter takes the gif image for dark mode which needs to be shown on the splash screen of the app

    Declaration

    Swift

    public var splashScreenGifDarkMode: String
  • Initializes the SplashScreenInfo structure

    Declaration

    Swift

    public init(copyrightInfoText: String, splashScreenGifLightMode: String, splashScreenGifDarkMode: String)

    Parameters

    copyrightInfoText

    This parameter takes the copyright text which needs to be shown on the splash screen of the app

    splashScreenGifLightMode

    This parameter takes the gif image for light mode which needs to be shown on the splash screen of the app

    splashScreenGifDarkMode

    This parameter takes the gif image for dark mode which needs to be shown on the splash screen of the app