Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
TextField gives unknown component (M300)
-
I might be doing something dumb here, but when I try to declare a TextField {} element in my QML file, Qt gives me a "TextField is not a type" error.
I'm using necessitas for Android and just about everything else works except TextField and TextArea.
I imported QtQuick 1.1
Any help appreciated, Thank you!
-
TextField and TextArea are from Qt Quick Components (may not be available for necessitas)
Try to use pure Qt Quick Text element
@Text {
font.pointSize: 20
text: "Hello"
}@