Skip to content

Instantly share code, notes, and snippets.

@tanmayb123
Created June 16, 2019 18:58
Show Gist options
  • Select an option

  • Save tanmayb123/8a1dd003b596ff95ad37aff88c01202a to your computer and use it in GitHub Desktop.

Select an option

Save tanmayb123/8a1dd003b596ff95ad37aff88c01202a to your computer and use it in GitHub Desktop.
VStack(alignment: .leading) {
Text("Hello World")
.font(.largeTitle)
.bold()
Text("This is my test app.")
}
.offset(x: stackLocation.x, y: stackLocation.y)
.gesture(DragGesture()
.onChanged {
self.stackLocation = $0.location
}
.onEnded { _ in
self.stackLocation = .zero
}
)
.animation(.spring())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment