view Simoleon/Functions/SimpleSuccess.swift @ 147:cbf8a128462e

Merge branch 'automate-app-preview' into development
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Tue, 17 Aug 2021 22:18:16 +0100
parents 75c1a05176f6
children
line wrap: on
line source

//
//  SimpleSuccess.swift
//  Simoleon
//
//  Created by Dennis Concepción Martín on 20/07/2021.
//

import SwiftUI

// Haptics
func simpleSuccess() {
    let generator = UINotificationFeedbackGenerator()
    generator.notificationOccurred(.success)
}