dmrschmidt / DSWaveformImage

Generate waveform images from audio files on iOS, macOS & visionOS in Swift. Native SwiftUI & UIKit views.
MIT License
978 stars 109 forks source link

LTR Support #92

Closed Amin-0-1 closed 5 months ago

Amin-0-1 commented 5 months ago

Hello gugys, thans for the great work, I am Just wondering if the WaveformLiveView support movement from left to right, I've tried semantic content attribute, it doesn't work anyway, thanks.

dmrschmidt commented 5 months ago

Hey @Amin-0-1, it currently does not, no.

Since the view is symmetrical on one axis, as workarounds I’d recommend to use a .rotationEffect(180) to rotate-flip the waveform or .scaleEffect(x: -1, y: 1) to mirror-flip it.

Would that work as a workaround?