Qt Quick best practices wiki page
-
How about some DOs / DONTs for cross-platform QtQuick?
What about using fixed size width, height, x, y vs anchors/locations. Fixed sizes seem overused, even in the examples.
Also, if you don't specify a font size, it could be anything it seems. Even if it looks fine on one platform, it be quite different on another unless you specify. Important to consider.
-
DONTs are a good idea i find. What about starting an own wiki page for it? I'll help as I can.
I suggested the title "Qt Quick Donts":http://developer.qt.nokia.com/wiki/Qt_Quick_Donts on the best practices page.Happy wikiing :)
-
So should the cross-platform (i.e. cross-resolution) DONTs go in there? You should always try to make your code cross-platform I think. Especially important to learn from the start. However, I'm not so sure on how important it is to make the QML rotatable.
It's quite amazing when you do the right practices and your code works on devices you've never even seen before.
There was a nice app on Qt-Apps made in QML for Linux Desktop. Worked perfect on Symbian devices even though the developer had never used or seen one. -
[quote author="xsacha" date="1291282464"]So should the cross-platform (i.e. cross-resolution) DONTs go in there? You should always try to make your code cross-platform I think. Especially important to learn from the start. However, I'm not so sure on how important it is to make the QML rotatable.[/quote]
If it is actually possible to write platform dependend QML, then I think that it should be included (sorry I'm not an experienced QML developer, I tried hacking some examples up to now)
I find the idea of the reverse style so appealing. :)
-
I have often seen in code (for example the Twitter app in SDK), they use specific font sizes and widths.
I ran it on Windows, looks fine. Though, the app is clearly designed for a mobile device with its small space constraints. So I tried it on Symbian, hideous. I spent a day fixing it up and it looks great now.It's funny because they admit this in the code. I saw a comment that they should use anchors instead. Definitely wiki material.
-
this has since been added as a "suggestion":http://bugreports.qt.nokia.com/browse/QTBUG-15757 in the Qt bug tracker and seems to be accepted, so we might see an official version soon ...
have also added a few more points in the wiki page ..
ps. a tag is missing for this post ? ;-)