TOTPFit/page/tip.js
2024-11-09 16:37:03 +03:00

29 lines
805 B
JavaScript

import { createWidget, widget, align } from "@zos/ui";
import { getDeviceInfo } from "@zos/device";
import { onGesture, GESTURE_LEFT } from '@zos/interaction'
import { back } from "@zos/router";
Page({
onInit(){
onGesture({
callback(event) {
if(event === GESTURE_LEFT){
back()
}
}
})
},
build() {
console.log("Page tip opened")
const {width, height} = getDeviceInfo()
createWidget(widget.TEXT, {
x: 0,
w: width,
h: height,
color: 0xffffff,
text_size: 30,
align_h: align.CENTER_H,
align_v: align.CENTER_V,
text: 'To add TOTP record open\n settings on Zepp app'
})
}
})