mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
export function clear(args) {
|
|
const tv1 = args.object.page.getViewById("tv1");
|
|
tv1.text = "";
|
|
const tv2 = args.object.page.getViewById("tv2");
|
|
tv2.text = "";
|
|
}
|