Hi,
I tried to use the sample on the site:
import Felgo 3.0
import QtQuick 2.0
App {
NavigationStack {
Page {
title: qsTr("Main Page")
MouseArea {
anchors.fill: parent
onClicked: textEdit.focus = false
}
// background for input
Rectangle {
anchors.fill: textEdit
anchors.margins: -dp(8)
color: "lightgrey"
}
// input
AppTextEdit {
id: textEdit
width: dp(200)
placeholderText: "What's your name?"
anchors.centerIn: parent
}
}
}
}
When I click on the gray area nothing happens and I can’t type anything there. What am I missing?
Thank you for your help.