I work in QtCreator, I develop an application for Sailfish OS. I have a QML file:
import QtQuick 2.0 import Sailfish.Silica 1.0 Page { id: page allowedOrientations: Orientation.All SilicaFlickable { anchors.fill: parent contentHeight: column.height Column { id: column spacing: Theme.paddingLarge TextField { placeholderText: qsTr("Fill the field") label: qsTr("Text Field") } } } } Nor does TextField display. Also the other elements of the input are not displayed. What could be the reason?