NetworkInfo for all modes possible?
Mobile and Embedded
1
Posts
1
Posters
891
Views
1
Watching
-
is there a way of specifying connection status for all connection modes? seem to work only with "mode: NetworkInfo.WlanMode"
@ NetworkInfo {
id: netInfo
mode: NetworkInfo.WlanMode // doesn't work at all without this line but works on simulator when switching modes there
monitorStatusChanges: true
onStatusChanged: {
statusText.text = newStatus
}
}@