> A.qml and B.qml are part of QML application in my
> case.But, they represent two different view all together with different
> widgets.
Either load both and transition visually:
Item {
A { opacity: 0 }
B { opacity: 1 }
... logic to change opacities ...
}
Or use Loader to load just one at a time (really only necessary if A and B are
quite large and complicated).
--
Warwick
_______________________________________________
Qt-qml mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-qml