fmodf
b3b3b3aef7
Reviewed-on: narayana/conversations-classic-ios#1 Co-authored-by: fmodf <fmodf.ios@gmail.com> Co-committed-by: fmodf <fmodf.ios@gmail.com>
18 lines
352 B
Swift
18 lines
352 B
Swift
import SwiftUI
|
|
import UIKit
|
|
|
|
enum Vibration: String {
|
|
case error
|
|
case success
|
|
|
|
public func vibrate() {
|
|
switch self {
|
|
case .error:
|
|
UINotificationFeedbackGenerator().notificationOccurred(.error)
|
|
|
|
case .success:
|
|
UINotificationFeedbackGenerator().notificationOccurred(.success)
|
|
}
|
|
}
|
|
}
|