mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import { addCss } from '@nativescript/core/application';
|
|
|
|
export function onLoaded(args) {
|
|
var page = args.object;
|
|
page.addCss('#property { background-color: lightsalmon; }');
|
|
}
|
|
|
|
export function onTap() {
|
|
addCss('#app { background-color: lightblue; }');
|
|
}
|