Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/ui-category/button/button-examples.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export const routerConfig = [
TitleAndNavButtonModule,
NativeScriptModule,
NativeScriptRouterModule,
NativeScriptFormsModule, NativeScriptRouterModule.forChild(routerConfig)
NativeScriptFormsModule,
NativeScriptRouterModule.forChild(routerConfig)
],
declarations: [
ButtonExamplesComponent,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<FlexboxLayout flexDirection="column" class="p-15" sdkExampleTitle sdkToggleNavButton>
<Label class="p-15 m-b-15" text="With our custom directive the grid below will be blue square in iOS and purple circle in Android"
<Label class="p-15 m-b-15" text="With our custom directive the grid below will be blue square in iOS and green circle in Android"
textWrap="true"></Label>
<!-- >> custom-directive-html -->
<GridLayout *sdkIfAndroid class="bg-primary" width="300" height="300" borderRadius="150"></GridLayout>
<GridLayout *sdkIfAndroid width="300" height="300" backgroundColor="#a4c639" borderRadius="150"></GridLayout>
<GridLayout *sdkIfIos width="300" height="300" backgroundColor="#0099CC" borderRadius="2"></GridLayout>
<!-- << custom-directive-html -->
</FlexboxLayout>