Mercurial > public > simoleon
view Simoleon/Helpers/HapticsHelper.swift @ 162:f5de15e06c77
Refactor code
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 31 Aug 2021 13:04:28 +0100 |
parents | 84137052813d |
children |
line wrap: on
line source
// // SimpleSuccess.swift // Simoleon // // Created by Dennis Concepción Martín on 20/07/2021. // import SwiftUI class HapticsHelper { // MARK: - Simple success func simpleSuccess() { let generator = UINotificationFeedbackGenerator() generator.notificationOccurred(.success) } }