first commit

This commit is contained in:
chorblack
2025-04-22 21:00:46 +08:00
commit 0b54051613
19 changed files with 1199 additions and 0 deletions

14
app.ux Normal file
View File

@@ -0,0 +1,14 @@
<script>
/**
* 应用级别的配置,供所有页面公用
*/
import brightness from '@blueos.hardware.display.brightness';
export default {
onCreate() { },
onDestroy() {
brightness.setKeepScreenOn({
keepScreenOn: false,
})
},
}
</script>