Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created November 9, 2022 16:55
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 BetterProgramming/d794587df334bc89520c47a215c3be7c to your computer and use it in GitHub Desktop.
Save BetterProgramming/d794587df334bc89520c47a215c3be7c to your computer and use it in GitHub Desktop.
struct ComplicationInline : View {
var body: some View {
Text("This will be a quote")
.widgetAccentable(true)
.unredacted()
}
}
struct ComplicationCircular : View {
var body: some View {
Text("This will be a quote")
.widgetAccentable(true)
.unredacted()
}
}
struct ComplicationCorner : View {
var body: some View {
Text("This will be a quote")
.widgetAccentable(true)
.unredacted()
}
}
struct ComplicationRectangular : View {
var body: some View {
Text("This will be a quote")
.widgetAccentable(true)
.unredacted()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment