Skip to content

Instantly share code, notes, and snippets.

@flashspys
Created July 30, 2020 19:39
Show Gist options
  • Save flashspys/3fcc612c831568dff1a6e2a7b1214cf9 to your computer and use it in GitHub Desktop.
Save flashspys/3fcc612c831568dff1a6e2a7b1214cf9 to your computer and use it in GitHub Desktop.
ScrollView {
Group {
Rectangle().fill(Color(UIColor.systemRed)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.systemBackground)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.secondarySystemBackground)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.tertiarySystemBackground)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.systemFill)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.secondarySystemFill)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.tertiarySystemFill)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.quaternarySystemFill)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.systemRed)).frame(width: 100, height: 100)
}
Group {
Rectangle().fill(Color(UIColor.systemBlue)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.label)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.secondaryLabel)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.tertiaryLabel)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.quaternaryLabel)).frame(width: 100, height: 100)
Rectangle().fill(Color(UIColor.systemBlue)).frame(width: 100, height: 100)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment