This commit is contained in:
Peter
2019-01-07 20:52:30 +01:00
parent 62730b9c0b
commit afc97ff44c
27 changed files with 608 additions and 518 deletions

View File

@@ -210,11 +210,15 @@ public final class PresentationThemeSwitch {
public let frameColor: UIColor
public let handleColor: UIColor
public let contentColor: UIColor
public let positiveColor: UIColor
public let negativeColor: UIColor
public init(frameColor: UIColor, handleColor: UIColor, contentColor: UIColor) {
public init(frameColor: UIColor, handleColor: UIColor, contentColor: UIColor, positiveColor: UIColor, negativeColor: UIColor) {
self.frameColor = frameColor
self.handleColor = handleColor
self.contentColor = contentColor
self.positiveColor = positiveColor
self.negativeColor = negativeColor
}
}