This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System Sound iOS | |
SoundID File name Category | |
1000 new-mail.caf MailReceived | |
1001 mail-sent.caf MailSent | |
1002 Voicemail.caf VoicemailReceived | |
1003 ReceivedMessage.caf SMSReceived | |
1004 SentMessage.caf SMSSent | |
1005 alarm.caf CalendarAlert | |
1006 low_power.caf LowPower |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTION = build | |
AD_HOC_CODE_SIGNING_ALLOWED = NO | |
ALTERNATE_GROUP = staff | |
ALTERNATE_MODE = u+w,go-w,a+rX | |
ALTERNATE_OWNER = grantdavis | |
ALWAYS_SEARCH_USER_PATHS = NO | |
ALWAYS_USE_SEPARATE_HEADERMAPS = YES | |
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer | |
APPLE_INTERNAL_DIR = /AppleInternal | |
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
/// Permanent Message Header Field Names | |
/// | |
/// Expert Review | |
/// | |
/// Expert(s) | |
/// Graham Klyne | |
/// | |
/// Reference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
// MARK: - URLScheme | |
public typealias URLScheme = String | |
// MARK: - URLType | |
public struct URLType: Codable { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import SwiftUI | |
struct FatSlider: View { | |
/// value in range 0...1 | |
@Binding var percentage: Float | |
var backgroundTint: Color = Design.Colors.lightGray | |
var pickerTint: Color = Design.Colors.orangeyRed | |
var pickerShadowColor: Color = Design.Colors.black50 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension View { | |
func uniAlert<Content>( | |
isShowing: Binding<Bool>, | |
@ViewBuilder content: @escaping () -> Content, | |
actions: [UniAlertButton] | |
) -> some View where Content: View { | |
UniAlert( | |
isShowing: isShowing, | |
displayContent: content(), |
OlderNewer