what i analyse from your question. i found this solution.
I want to make my movable circle view aligned with the top and left side of the window.
struct CircleView: View {
init(parentSize: CGSize) {
self.parentSize = parentSize
_currentOffset = State(initialValue:.zero) // just set this line to zero
_lastOffset = _currentOffset
}
}