我目前正在开发一个应用程序,向用户展示他的植物箱和一些测量值(如地面湿度、温度等)每个植物箱里面都有一些植物,这些植物正在详细视图中显示。我希望用户能够将其中一种植物拖到角落以将其移除。目前我有这个实现:
@GestureState private var dragOffset = CGSize.zero
var body: some View {
//Plants Headline
VStack (spacing: 5) {
Text("Plants")
.font(.headline)
.fontWeight(.light)
//HStack for Plants Images
HStack (spacing: 10) {
//For each that loops through all of the plants inside the plant box
ForEach(plantBoxViewModel.plants) { plant in
//Image of the individual plant (obtained via http request to the backend)
Image(base64String: plant.picture)
.resizable()
.clipShape(Circle())
.overlay(Circle().stroke(Color.white, lineWidth: 2))
.offset(x: self.dragOffset.width, y: self.dragOffset.height)
.animation(.easeInOut)
.aspectRatio(contentMode: .fill)
.frame(width: 70, height: 70)
.gesture(
DragGesture()
.updating(self.$dragOffset, body: { (value, state, transaction) in
state = value.translation
})
)
}
}
}
}
如下所示: 代码片段的屏幕截图
但是,当我开始拖动时,两个图像都会移动。我认为这是因为两个图像的偏移量都绑定到同一个变量(DragOffset)。我怎样才能做到只有一张图像在移动?
我考虑过实现某种数组,将植物的索引映射到特定的偏移量,但我不知道如何将它实现到手势中。谢谢你的帮助!