Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created January 24, 2021 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturdysturge/c122bae4fb81e2a7a31b5107cae9e9a5 to your computer and use it in GitHub Desktop.
Save sturdysturge/c122bae4fb81e2a7a31b5107cae9e9a5 to your computer and use it in GitHub Desktop.
struct DefaultProgressViews: View {
var body: some View {
VStack {
ProgressView(value: 0.25)
.accentColor(.red)
ProgressView(value: 0.75)
.background(.black)
}
.progressViewStyle(DefaultProgressViewStyle())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment