geometryReader
GeometryReader { geometry in | |
VStack{ | |
HStack{ | |
Button(action: {}){ | |
Image("camera") | |
.resizable() | |
.frame(width: 30, height: 30) | |
}.padding() | |
Text("Back4Gram") | |
.font(.largeTitle) | |
.foregroundColor(lightBlueColor) | |
.fontWeight(.semibold) | |
Spacer() | |
Button(action: {}){ | |
Image("home") | |
.resizable() | |
.frame(width: 30, height: 30) | |
} | |
Button(action: {}){ | |
Image("paper-plane") | |
.resizable() | |
.frame(width: 30, height: 30) | |
}.padding() | |
}.frame(height: 50) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment