How I can send s signal from one qml component to another?
Below is an example:
Rectangle { id: main width: 360; height: 360 signal clicked()
you can use QML connection element
Connections { target: yourQmlObject onClicked: foo(...) }