mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 12:46:24 +00:00
20 lines
278 B
QML
20 lines
278 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle
|
|
{
|
|
width: 100
|
|
height: 100
|
|
color: "red"
|
|
|
|
Text
|
|
{
|
|
anchors.fill: parent
|
|
text: model
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
//myObject.foo()
|
|
var result = myObject.bar(1345);
|
|
console.log("From qml received value:", result)
|
|
}
|
|
} |