Skip to content

Instantly share code, notes, and snippets.

@alyssoncm
Created September 25, 2019 20:49
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 alyssoncm/9e88981ece3e7d4b4a58cb7954e4f59d to your computer and use it in GitHub Desktop.
Save alyssoncm/9e88981ece3e7d4b4a58cb7954e4f59d to your computer and use it in GitHub Desktop.
HomeView
struct HomeView: View {
var body: some View {
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)
ScrollView(.horizontal, showsIndicators: false) {
HStack {
PreviewViewTop()
PreviewViewTop()
PreviewViewTop()
PreviewViewTop()
PreviewViewTop()
PreviewViewTop()
}
}.frame(height: 70)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment