You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func OSXSizeHelper(){letsize=Device.size()if size >.screen15Inch {print("Your device screen is larger than 15 inch")}if size <.screen15Inch {print("Your device screen is smaller than 15 inch")}if size >=.screen15Inch {print("Your device screen is equal or larger than 15 inch")}if size <=.screen15Inch {print("Your device screen is equal or smaller than 15 inch")}if size ==.screen15Inch {print("It's a 15 inch screen")}if size !=.screen17Inch {print("It's not 17 inch screen")}ifDevice.isRetina(){print("It's a retina display")}}