Skip to content

Commit 4214637

Browse files
committed
Add style/ngStyle bindings to RendererTest example
1 parent 3f65534 commit 4214637

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ng-sample/app/app.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import {ModalTest} from "./examples/modal/modal-test";
2828
import {PlatfromDirectivesTest} from "./examples/platform-directives/platform-directives-test";
2929
import {RouterOutletTest} from "./examples/navigation/router-outlet-test";
3030

31-
//nativeScriptBootstrap(RendererTest);
32-
nativeScriptBootstrap(TabViewTest);
31+
nativeScriptBootstrap(RendererTest);
32+
//nativeScriptBootstrap(TabViewTest);
3333
//nativeScriptBootstrap(Benchmark);
3434
//nativeScriptBootstrap(ListTest);
3535
//nativeScriptBootstrap(ListTestAsync);

ng-sample/app/examples/renderer-test.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<DatePicker [(ngModel)]='model.deliveryDate' ></DatePicker>
66
<Label [text]='model.deliveryDate' ></Label>-->
77
<SearchBar [(ngModel)]='model.search'></SearchBar>
8-
<Label [text]='model.search'></Label>
9-
<Label [text]='model.mydate | date:"fullDate"'></Label>
8+
<Label [text]='model.search' [style.backgroundColor]="'hotpink'"></Label>
9+
<Label [text]='model.mydate | date:"fullDate"' [ngStyle]="{'background-color': 'lime'}"></Label>
1010
<Slider [(ngModel)]='model.sliderTest'></Slider>
1111
<Label [text]='model.sliderTest'></Label>
1212
<ListPicker [items]='model.listPickerItems' [(ngModel)]='model.selectedIndex'></ListPicker>

0 commit comments

Comments
 (0)