Skip to content

Instantly share code, notes, and snippets.

@tanmayb123
Last active June 16, 2019 18:55
Show Gist options
  • Save tanmayb123/b6452924864cd65b421c02654f63f63c to your computer and use it in GitHub Desktop.
Save tanmayb123/b6452924864cd65b421c02654f63f63c 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
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment