https://github.com/yspreen/waveform-test
https://github.com/yspreen/waveform-test
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/yspreen/waveform-test
- Owner: yspreen
- Created: 2022-11-13T16:37:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T15:31:13.000Z (over 1 year ago)
- Last Synced: 2025-06-25T08:09:15.448Z (about 1 year ago)
- Language: Swift
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# waveform-test

```swift
var clipped: some View {
WaveformView(
audioURL: url,
configuration: .init(
size: .init(width: 300, height: 50),
style: .striped(.init(
color: .blue, width: 3, lineCap: .round
))
)
)
.frame(width: 300, height: 50)
.background(Color.white)
}
var scaled: some View {
WaveformView(
audioURL: url,
configuration: .init(
size: .init(width: 300, height: 50),
style: .striped(.init(
color: .blue, width: 3, lineCap: .round
)),
verticalScalingFactor: 0.5
)
)
.frame(width: 300, height: 50)
.background(Color.white)
}
```