Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created November 9, 2022 17:10
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/4818005eb1b16e28cf89d98725f96e1c to your computer and use it in GitHub Desktop.
Save BetterProgramming/4818005eb1b16e28cf89d98725f96e1c to your computer and use it in GitHub Desktop.
[...]
struct ComplicationCorner : View {
var entry: QuoteEntry
var body: some View {
Image(systemName:"quote.bubble")
.widgetLabel {
Text(entry.quote.quote)
.widgetAccentable(true)
}
.unredacted()
}
}
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment