This file contains hidden or 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 SwiftUI | |
import AVFoundation | |
class AVSpeechSynthGlue: NSObject, AVSpeechSynthesizerDelegate { | |
enum State { | |
case didStart(AVSpeechUtterance) | |
case willSpeakRangeOfSpeechString(NSRange) | |
case willSpeak(AVSpeechSynthesisMarker) | |
case didPause(AVSpeechUtterance) | |
case didContinue(AVSpeechUtterance) |
This file contains hidden or 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
// | |
// CustomSwiftUIAlert.swift | |
// Field | |
// | |
// Created by Cesare Forelli on 24/04/24. | |
// | |
import SwiftUI | |