I have been trying to work on a running calendar app and have been having some issue
-
I am trying to have a calendar in the middle of my main page but keep getting the error that Calendar is not a type but going off of the Qt documentation below it is in the QtQuick.Controls package and I have the 2.0 version of that package imported. Another side note question, I tried doing the template app for Clickable using Python and was confused because it certainly didn't look like python at all. So is it actually python or something else?
-
Interesting. I didn't know about that element.
I did a quick test on the desktop with version 1.4 and failed on qqc2You can try:
import QtQuick.Controls 1.4 as Qqc1
and
Qqc1.Calendar{}
(Not sure what version of Controls is installed on the image)
-
@CiberSheep I'll give that a go when I get home. Thanks for the advice.