16 lines
277 B
Swift
16 lines
277 B
Swift
//
|
|
// ConfigUI.swift
|
|
// BluefruitPlayground
|
|
//
|
|
// Created by Antonio García on 18/10/2019.
|
|
// Copyright © 2019 Adafruit. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
struct ConfigUI {
|
|
|
|
static var prefersLargeTitles: Bool {
|
|
UIScreen.main.bounds.height > 700
|
|
}
|
|
}
|