ITEM COULD NOT BE CREATED
-
wrote on 28 Feb 2021, 13:54 last edited by nasir60
-
wrote on 15 Apr 2021, 13:16 last edited by
I am also facing this ,Did you solve this error
-
I'm having trouble opening a new project,
a message appears like this:
item cannot be created
-
@nasir60 It's been a while since you posted this, but I am wondering if you found a solution.
@lalemola
If this with Qt6 ? -
@mrjj Sorry for the delay; using creator 4.15.1, reinstalled just today and the issue still exists.
@lalemola
Hi
so you downgrade the Qt version from 6.0 to 5.15 ?
Or still using Qt6 ?The Creator version is not so important as It can use the newest and older Qt versions.
(also at same time)Im wondering if this is something with Qt6.
-
@lalemola
Hi
so you downgrade the Qt version from 6.0 to 5.15 ?
Or still using Qt6 ?The Creator version is not so important as It can use the newest and older Qt versions.
(also at same time)Im wondering if this is something with Qt6.
-
@mrjj Yes, tried 6.2 and 6.1.2. I will try to install a version prior to Qt 6..1.2 and give that a try; it seems like a small but very annoying bug.
-
wrote on 30 Aug 2021, 01:18 last edited by
is there any solution for this issue ? even a clue where is the wrong part ?
I just installed qt 6.0.4 and XCode on macOS Big Sur and facing this issue.
i also installed latest qt 5.15 and no error on creating Window item. -
wrote on 31 Aug 2021, 19:14 last edited by
-
I am facing this issue as well, but in my case, it does not show "Go to error" in the designer, just a Window with 0 width and height, I suppose. Text editor works as expected.
Using Qt 6.1.2 and Qt Creator 5.0.0 on Windows 10.
-
I am facing this issue as well, but in my case, it does not show "Go to error" in the designer, just a Window with 0 width and height, I suppose. Text editor works as expected.
Using Qt 6.1.2 and Qt Creator 5.0.0 on Windows 10.
wrote on 2 Sept 2021, 06:52 last edited by@nasir60 @nagaraj_4896 @lalemola @tukangketik @Tom4nt I never used Qt 6, but AFAIK in Qt 6 you do not have to specify the import version.
So if you QML looks like this:
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 640 height: 480 visible: true title: qsTr("Hello World") }
Then remove the version information and I suppose it should than work as expected.
import QtQuick import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Hello World") }
-
@nasir60 @nagaraj_4896 @lalemola @tukangketik @Tom4nt I never used Qt 6, but AFAIK in Qt 6 you do not have to specify the import version.
So if you QML looks like this:
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 640 height: 480 visible: true title: qsTr("Hello World") }
Then remove the version information and I suppose it should than work as expected.
import QtQuick import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Hello World") }
wrote on 2 Sept 2021, 15:07 last edited by@KroMignon I am using Qt Creator 5.00! Still facing the same issue as @Tom4nt 4276713b-f528-438b-8987-7ddd07ebfe59-image.png
-
@KroMignon I am using Qt Creator 5.00! Still facing the same issue as @Tom4nt 4276713b-f528-438b-8987-7ddd07ebfe59-image.png
wrote on 2 Sept 2021, 15:09 last edited by@Zahid said in ITEM COULD NOT BE CREATED:
I am using Qt Creator 5.00!
Qt Creator is an IDE, it's version not relevant. What matter is the Qt Kit you are using.
-
@Zahid said in ITEM COULD NOT BE CREATED:
I am using Qt Creator 5.00!
Qt Creator is an IDE, it's version not relevant. What matter is the Qt Kit you are using.
wrote on 2 Sept 2021, 15:19 last edited by@KroMignon Qt version 6.12. How can I solve this? Should I downgrade my Qt version?
-
@nasir60 @nagaraj_4896 @lalemola @tukangketik @Tom4nt I never used Qt 6, but AFAIK in Qt 6 you do not have to specify the import version.
So if you QML looks like this:
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 640 height: 480 visible: true title: qsTr("Hello World") }
Then remove the version information and I suppose it should than work as expected.
import QtQuick import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Hello World") }
wrote on 4 Sept 2021, 20:25 last edited by@KroMignon Sorry for the late reply. I thought I would receive an email.
The project I created already came with the imports like this:import QtQuick import QtQuick.Window
I tried adding the versions though, but it didn't work.
-
wrote on 5 Sept 2021, 12:02 last edited by
I am facing the same issue on both my PC and Mac when using the QtCreator 5.0.0 and Qt 6.1 or 6.2 beta kits with new/old QtQuick Projects. The issue is not present when I'm working with Qt 5.15.2. Adding or removing version numbers does not have an effect on the issue. My PC is i9-10850K and GTX970 running Windows 10, and my Mac is Macbook Air M1 base model. Everything else works, including build, running on real devices / simulators, etc.
-
I am facing the same issue on both my PC and Mac when using the QtCreator 5.0.0 and Qt 6.1 or 6.2 beta kits with new/old QtQuick Projects. The issue is not present when I'm working with Qt 5.15.2. Adding or removing version numbers does not have an effect on the issue. My PC is i9-10850K and GTX970 running Windows 10, and my Mac is Macbook Air M1 base model. Everything else works, including build, running on real devices / simulators, etc.
wrote on 7 Sept 2021, 09:49 last edited by@arewethereyet said in ITEM COULD NOT BE CREATED:
I am facing the same issue on both my PC and Mac when using the QtCreator 5.0.0 and Qt 6.1 or 6.2 beta kits with new/old QtQuick Projects. The issue is not present when I'm working with Qt 5.15.2. Adding or removing version numbers does not have an effect on the issue. My PC is i9-10850K and GTX970 running Windows 10, and my Mac is Macbook Air M1 base model. Everything else works, including build, running on real devices / simulators, etc.
I tested Qt 6.1.3 GCC kit on Zorin OS (based on Ubuntu 20.04.3 LTS) and the problem is present there as well. Is there any solution to this problem or what could be causing it? There's no Felgo hot reload for Qt 6 yet to my understanding, so I cannot use that to bypass design view issues when developing front-end either...
-
wrote on 10 Sept 2021, 17:32 last edited by
I'm also experiencing this issue using QtCreator 5.0.0 and QT version 6.1.3 on macOS Big Sur (11.5.2). When starting a new project with the base qml window code, I can run the project and the window will appear. Switching to the Design view, I am unable to see the form in the form editor, and in the Navigator pane, hovering over the "Window" component displays the message: "item could not be created."
-
wrote on 14 Sept 2021, 00:16 last edited by
Popping in to say that I am experiencing this issue when I create a new project in QT Creator with the Qt 6.0 minimal version selection.