no message

This commit is contained in:
Peter
2018-08-03 23:23:02 +03:00
parent 07fc80ef3a
commit ab261ecbc7
155 changed files with 7548 additions and 3657 deletions

View File

@@ -38,6 +38,15 @@ public enum PresentationThemeStatusBarStyle: Int32 {
case black = 0
case white = 1
init(_ style: StatusBarStyle) {
switch style {
case .White:
self = .white
default:
self = .black
}
}
var style: StatusBarStyle {
switch self {
case .black: