Yea, I was doing this for my scaling:
`Image(uiImage: image)
.resizable()
.frame(width: width, height: height)
.clipShape(RoundedRectangle(cornerRadius: 20))
.scaleEffect(self.isDragging ? 1.5 : 1)
.offset(self.currentPosition)
.gesture(combined)
.scaleEffect(self.scale)
.onAppear{
self.loadImage()`
So basically assigning the changed scale to the .scaleEffect() of the view.
I also tried with the new .onUpdated() in the MagnificationGesture, like this:
`.gesture(MagnificationGesture()
.updating($scale, body: { (value, scale, trans) in
scale = value.magnitude
}))
.scaleEffect(scale)
And defined@GestureState private var scale: CGFloat = 1.0` in the definition of my view. None of this seems to work. :(
Post
Replies
Boosts
Views
Activity
I am also experiencing this issue..
Opening a ticket…:(
The fake leaderboard and achievement trick doesn’t seem to work…. :(
Thank you, I'll check it out.
I am having the same issue reported in this thread. Is there something I have to do to get this working again?
wow...Just figured out why it is acting like this! And it is aggravating....
If you edit a record without all the fields showing in the results list it breaks the query. :(
If I edit the same record and remove the value and re-add it with all fields showing in the results, then the query starts working....