remove testing default

This commit is contained in:
Scott Pfeil 2022-03-09 12:07:33 -05:00
parent 44a57ab96e
commit a1f9e4babe
3 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ public class TabBarModel: MoleculeModelProtocol {
}
}
public var style: NavigationItemStyle? = NavigationItemStyle.dark
public var style: NavigationItemStyle?
// Must be capped to 0...(tabs.count - 1)
public var selectedTab: Int = 0

View File

@ -12,7 +12,7 @@ public class TabsModel: MoleculeModelProtocol {
public static var identifier: String = "tabs"
public var tabs: [TabItemModel]
open var style: NavigationItemStyle? = .dark
open var style: NavigationItemStyle?
open var _backgroundColor: Color?
open var backgroundColor: Color? {

View File

@ -24,7 +24,7 @@ open class NavigationItemModel: NavigationItemModelProtocol, MoleculeModelProtoc
open var hidden = false
open var line = LineModel(type: .standard)
open var hidesSystemBackButton = true
open var style: NavigationItemStyle? = .dark
open var style: NavigationItemStyle?
open var _backgroundColor: Color?
open var backgroundColor: Color? {