0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SwiftUi 画像 をドラッグして自由に動す方法 場所を保持したままにする

Posted at

先日のこちらでは、手を離したら中央に戻ってしまいましたが、こちらで指を離したところに表示をしている状態に変更する方法です。

実装コード

.swift
struct DraggableImageView: View {
    @State private var currentDrag: CGSize = .zero  // 画像の位置を管理する変数
    @State private var startPosition: CGSize = .zero  // 開始位置を保持

    var body: some View {
        Image(systemName: "star.fill")
            .resizable()
            .frame(width: 50, height: 50)
            .position(x: UIScreen.main.bounds.width / 2 + startPosition.width + currentDrag.width,
                      y: UIScreen.main.bounds.height / 2 + startPosition.height + currentDrag.height)
            .gesture(
                DragGesture()
                    .onChanged { gesture in
                        currentDrag = gesture.translation
                    }
                    .onEnded { _ in
                        startPosition.width += currentDrag.width  // 開始位置を更新
                        startPosition.height += currentDrag.height
                        currentDrag = .zero  // ドラッグ量をリセット
                    }
            )
    }
}

onEndedでドラッグ位置を保持する事とで場所を保持したままにすることができます!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?