Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created July 18, 2022 22:26
Show Gist options
  • Save sturdysturge/e876fd9acd3263dc6bcb4e1718c4490d to your computer and use it in GitHub Desktop.
Save sturdysturge/e876fd9acd3263dc6bcb4e1718c4490d to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
@State var colour: Color = .clear
var body: some View {
List {
ColorPicker("Background", selection: $colour)
}
.scrollContentBackground(colour)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment