I have a problem regarding the leaving of the settings page in my application.
When leaving the settings page i would like to send a signal to another page, so that the
other page can reload the data according to the new configuration. The problem is
that it is not working with
onStatusChanged: if (status === PageStatus.Deactivating) {}
because the statusChanged event is not only triggered when i go back to the previous page (which
is ok), however it is also triggered, when the ComboBox on my settings page is selected.
The comboBox has a lot of entries, so the the ?Silica Framework? decides to display the selection
in a new page. When opening the new page for the selection - the statusChanged event is triggered
for the SettingsPage, which is not intended in this situation.
Any ideas how to prevent this situation. i only want to get a notification when actually leaving
the settings page (when finished).