I have a file called main.qml, which instantiate ApplicationWindow.
I would like to access this object(app) in other qml file.
ApplicationWindow {
id:app
title: "Title"
visible: true
property int keyboardPosition:10//need to access from other qml files for set/get
....
...
}
Is there any API available to access qml application object?
or
How to set application settings in qml. is it singleton class approach or any other?