mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { addCss } from "tns-core-modules/application";
|
|
|
|
export function onLoaded(args) {
|
|
var page = args.object;
|
|
page.addCss("#property { background-color: lightsalmon; }");
|
|
}
|
|
|
|
export function onTap() {
|
|
addCss("#app { background-color: lightblue; }");
|
|
}
|