Skip to content
Snippets Groups Projects
FactTextInput.qml 267 B
Newer Older
  • Learn to ignore specific revisions
  • Don Gagne's avatar
    Don Gagne committed
    import QtQuick 2.2
    
    Don Gagne's avatar
    Don Gagne committed
    import QtQuick.Controls 1.2
    import QGroundControl.FactSystem 1.0
    
    TextInput {
        property Fact fact
        text: fact.value
        font.family: "Helvetica"
        font.pointSize: 24
        color: "red"
        focus: true
        onAccepted: { fact.value = text; }
    }