On Fri, Sep 24, 2010 at 2:00 PM, Almo Nito <[email protected]> wrote: > Hello there, i have a Flippable like the one in the flipabe example > > Cant I use ids as front and back? do I have to place the real item there? >
It looks like you have to place the real item there: http://doc.qt.nokia.com/4.7/declarative-ui-components-flipable-content-card-qml.html It probably would be best to put your two items in separate QML files, for example Browser.qml and Information.qml, then in your Flipable you would have: Flipable { front: Browser { } back: Information { } } -Colin Kern _______________________________________________ Qt-qml mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-qml
