Use isTranslucent= true on iOS 10

pull/2/head
Michael Scoff 7 years ago
parent 2da0f05371
commit d83289eeb9
  1. 6
      Trust/Style/AppStyle.swift

@ -4,6 +4,12 @@ import Foundation
import UIKit
func applyStyle() {
if #available(iOS 11, *) {
} else {
UINavigationBar.appearance().isTranslucent = false
}
UINavigationBar.appearance().tintColor = Colors.blue
UINavigationBar.appearance().titleTextAttributes = [

Loading…
Cancel
Save