Style
open class Style: NSObject
                Style is a convenient wrapper for styling the appearance of various interface components throughout the Navigation UI.
Styles are applied globally using UIAppearance. You should call Style.apply() to apply the style to the NavigationViewController.
- 
                  
                  
Sets the tint color for guidance arrow, highlighted text, progress bar and more.
Declaration
Swift
public var tintColor: UIColor? - 
                  
                  
Sets the status bar style.
UIViewControllerBasedStatusBarAppearancemust be set to NO for this property to have any effect.Declaration
Swift
public var statusBarStyle: UIStatusBarStyle? - 
                  
                  
Sets the font family for all labels.
Declaration
Swift
public var fontFamily: String? - 
                  
                  
Describes the situations in which the style should be used. By default, the style will be used during the daytime.
Declaration
Swift
public var styleType: StyleType = .dayStyle - 
                  
                  
Map style to be used for the style.
Declaration
Swift
open var mapStyleURL: URL = URL(string: "mapbox://styles/mapbox/navigation-guidance-day-v2")! - 
                  
                  
Applies the style for all changed properties.
Declaration
Swift
open func apply() 
              Install in Dash
            
        Style Class Reference