How I link flowview .ui.qml into project
Solved
Qt Design Studio
-
Hi!
I don't understand how I can make my project to start with using my flow view. Here is my steps:
- Create default project in design studio
- Add flow view
- Add couple flow items and build basic flow view with two items and connection between them.
But now I'm lost what to do next. If I run my program it stll opens old Screen01.ui.qml. If I change App.qml file like below that I replace Screen01 with my AppFlowView .ui.qml type it dosen't work. What I'm missing here. I just would like to get my flow view to work.
import QtQuick import QtQuick.Window import UntitledProject7 Window { width: mainScreen.width height: mainScreen.height visible: true title: "UntitledProject7" Screen01 { id: mainScreen } /* This is not working AppFlowView { id: flowview } */ }