Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created January 26, 2021 20:20
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/2a2a6fe2d07073a464924a59e1a4c0a3 to your computer and use it in GitHub Desktop.
Save sturdysturge/2a2a6fe2d07073a464924a59e1a4c0a3 to your computer and use it in GitHub Desktop.
struct AquaFinderView: View {
var body: some View {
ZStack {
AquaWindowControlsView(title: "🏠 Home")
VStack {
AquaFinderTopControls()
AquaFinderContentView()
Spacer()
}
}
.padding(10)
.background(AquaBrushedMetalView())
.cornerRadius(10)
.overlay(AquaHighAndLowlightView(
shape: RoundedRectangle(cornerRadius: 10),
colors: [.aquaLightGray, .clear, .gray]))
}
}
struct AquaFinderContentView: View {
var body: some View {
HStack {
AquaFinderLeftListView()
Spacer()
VStack {
AquaFinderRightGridView()
Text("6 items, 1.09 GB available")
.font(.caption2)
.foregroundColor(.black)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment