Dheerendra, I’m trying to implement something similar to Chrome tabs. I mean user should be able to move tab into another new/existing window.
The approach with QtQuick2ApplicationViewer is ok for me, but i don’t understand how to pass some qml objects to a new window that I would like to move. Btw, I just found why I didn’t have tasks for each window in OS taskbar. It’s due to this line
var win = component.createObject(root);
Root is not needed,
var win = component.createObject();
gives me what I need
↧