Skip to content

Instantly share code, notes, and snippets.

@alyssoncm
Created September 25, 2019 20:48
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/8616d6ff6b4b3bbb434c20ae86390cb9 to your computer and use it in GitHub Desktop.
Save alyssoncm/8616d6ff6b4b3bbb434c20ae86390cb9 to your computer and use it in GitHub Desktop.
PreviewViewTop
struct PreviewViewTop: View {
var body: some View {
HStack{
VStack {
Image("logo-social")
.resizable()
.frame(width: 60, height: 60)
.clipShape(Circle())
.shadow(radius: 3)
.overlay(Circle().stroke(Color.pink, lineWidth: 1))
Text("Your Stories")
.font(.caption)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment