AudioKitUI icon indicating copy to clipboard operation
AudioKitUI copied to clipboard

AudioFileWaveform using with changing URLs

Open mahal opened this issue 8 months ago • 0 comments

Description

Consider following View (pseudo code):

var audioFiles: [AudioFile] // set somewhere on init

var body: some View {
     let audioFile = audioFiles[loadedFileIndex]
     Picker("Sound File", selection: $loadedFileIndex) {
          ForEach(audioFiles.indices, id: \.self) { index in
               Text("\(.audioFiles[index].name)")
          }
      }
     AudioFileWaveform(url: audioFile.url, color: .blue) 
}

This will not update AudioFileWaveform with the new file chosen.

Proposed Solution

See PR 90

Describe Alternatives You've Considered

.didSet on var url: URL of AudioFileWaveform, didn't work the deprecated onChange() didn't know how to test / implement

Additional Context

No response

mahal avatar Jun 12 '24 20:06 mahal