Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
VladK9 authored Jan 12, 2022
1 parent 903a30b commit a4339e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ let actions: [UIControlViewAction] = [
]

view.showHideIndicator = false
view.closeTitle = "Close"
view.closeBackColor = .theme(light: .black, dark: .white, any: .white) // .color(.black)
view.closeTintColor = .auto
view.closeButton.title = "Close"
view.closeButton.tintColor = .auto
view.closeButton.backColor = .theme(light: .black, dark: .white, any: .white) // .color(.black)
view.showWithSlideAnimation = true
view.delegate = self
view.show(self, type: .actions(actions))
Expand All @@ -138,9 +138,9 @@ let view = UIControlView.self
let colors: [UIColor] = [.gray, .systemBlue, .brown, .systemTeal, .systemCyan, .systemPink, .systemRed, .systemMint]

view.showHideIndicator = false
view.closeTitle = "Close"
view.closeBackColor = .theme(light: .black, dark: .white, any: .white) // .color(.black)
view.closeTintColor = .auto
view.closeButton.title = "Close"
view.closeButton.tintColor = .auto
view.closeButton.backColor = .theme(light: .black, dark: .white, any: .white) // .color(.black)
view.showWithSlideAnimation = true
view.delegate = self
view.colorDelegate = self
Expand Down

0 comments on commit a4339e2

Please sign in to comment.