Fix Phone controls runtime accessibility

This commit is contained in:
Gabriel Brown
2026-08-17 19:01:42 -04:00
parent fbf729b25c
commit 3213a0989a
5 changed files with 204 additions and 9 deletions
@@ -0,0 +1,13 @@
pragma Singleton
import QtQuick
QtObject {
property bool bluebubblesAvailable: true
property int launchCount: 0
function openApplication(id: string): bool {
launchCount += 1;
return false;
}
}