spacenation / swiftui-sliders

:rocket: SwiftUI Sliders with custom styles
MIT License
805 stars 85 forks source link

Fix track accent color crash #9

Closed ay42 closed 4 years ago

ay42 commented 4 years ago

Crash when track is used in modal view

HTrack(value: value, view:
    Capsule().foregroundColor(.accentColor)
)

Workaround:

HTrack(value: value, view:
    Capsule().foregroundColor(.accentColor)
)
.accentColor(.accentColor)