mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
Action bar title color stylers
This commit is contained in:
@ -7,3 +7,14 @@ export function itemTap(args: observable.EventData) {
|
||||
});
|
||||
}
|
||||
|
||||
export function setStyle(args) {
|
||||
var page = args.object.actionBar.page;
|
||||
|
||||
page.css = "ActionBar { color: red; }";
|
||||
}
|
||||
|
||||
export function clearStyle(args) {
|
||||
var page = args.object.actionBar.page;
|
||||
|
||||
page.css = "Page { background-color: red; }";
|
||||
}
|
||||
|
@ -3,7 +3,8 @@
|
||||
<Page.actionBar>
|
||||
<ActionBar title="Title" class="custom-action-bar">
|
||||
<ActionBar.actionItems>
|
||||
<ActionItem text="hi" />
|
||||
<ActionItem text="set" tap="setStyle"/>
|
||||
<ActionItem text="clear" tap="clearStyle"/>
|
||||
</ActionBar.actionItems>
|
||||
</ActionBar>
|
||||
</Page.actionBar>
|
||||
|
Reference in New Issue
Block a user