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)
|
|
}
|
|
}
|
|
}
|