View Single Post
Posts: 3,464 | Thanked: 5,107 times | Joined on Feb 2010 @ Gothenburg in Sweden
#7
One more.

Get rid of the "section" in pulley menu instead user could just swipe right. One less element in pulley menu is good.

I have seen this in some Jolla apps. For example mail application doing show folders that way....

eg: instead of pageStack.push("SectionPage.qml") when trigger
do pushAttached() on startup.

I did it thois way in jolla together app (in FirstPage.qml)

Code:
  Timer {
        /* For uknown reason, we can't on onCompleted to push the page so this timer used instead */
        interval: 100 // wait 100msec
        repeat: false
        running: true
        onTriggered: { pageStack.pushAttached(Qt.resolvedUrl("SectionPage.qml")); } 
    }
and when use swipe right it just there already

Very nice sailfish UI feature IMHO
__________________
Keep safe and healthy
 

The Following 3 Users Say Thank You to mikecomputing For This Useful Post: