Hi,
I ended up using Bobs solution. I disabled backNavigation and made a custom
button to go back.
On Thu, Jan 16, 2014 at 1:47 PM, Seppo Tiainen wrote:
> Hi,
>
> You can check if these easy QML tools are enough for you app:
> - gesture.grab command within a MultiPointTouchArea ( onGestureStart
Hi,
You can check if these easy QML tools are enough for you app:
- gesture.grab command within a MultiPointTouchArea ( onGestureStarted:
{gesture.grab();} )
- or, page by page you can use backNavigation: false and/or
forwardNavigation: false.
Seppo
2014/1/15 Alexander Ladygin
> Hi there
> Ju
Hi there
Just a thought: may be you could do it like it's done in Gallery app, where
tapping one time brings down menu, where you could navigate back and
forward.
Best regards,
Alexander.
On Tue, Jan 14, 2014 at 1:45 PM, Antoine Reversat wrote:
> Yeah that's what I was going to do as a last reso
Yeah that's what I was going to do as a last resort :(
On Tue, Jan 14, 2014 at 2:49 AM, Bob Jelica wrote:
> Hey,
>
> I’m fighting with the same problem. Only way, at least that I’ve found
> thus far, is to use backNavigation/forwardNavigation properties and then
> ”faking” the navigation button
Hey,
I’m fighting with the same problem. Only way, at least that I’ve found thus
far, is to use backNavigation/forwardNavigation properties and then ”faking”
the navigation buttons in top-left corner with a switch and a label :)
//bob
On 14 Jan 2014, at 03:42, Antoine Reversat wrote:
> Hi,
>
Hi,
I would like to know if it is possible to disable navigation gestures . I'm
using a Map element and navigation gestures override the panning gesture. I
don't want to disable the navigation buttons at the top left corner so
backNavigation and forwardNavigation properties don't work for me.
Ant