qmlfrontend/Page1.qml
author Marcin Mielniczuk <marmistrz.dev@zoho.eu>
Thu, 28 Jun 2018 17:29:37 +0200
changeset 13435 eb91b889101b
parent 12859 28cb18c5e712
child 12863 0c6fb706f747
child 14148 745c73e0e644
permissions -rw-r--r--
Undo enabling the `unreachable-pub` lint. It appears that nom cannot correctly handle `pub(crate)`, so the warnings cannot be fixed at the moment. See https://github.com/Geal/nom/issues/807

import QtQuick 2.7

Page1Form {
  button1.onClicked: {
    console.log("Button Pressed. Entered text: " + textField1.text);
  }
}