import QtQuick 1.0 Item { width: 200 height: 100 Text { text: "Enter your name:" font.family: "Helvetica" font.pixelSize: 14 color: "blue" x: 0 y: 0 } TextInput { text: "Default Text" font.family: "Helvetica" font.pixelSize: 14 color: "red" x: 10 y: 20 focus: true } }