| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,10 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd"> | ||
| 2 | + | ||
| 3 | + <ActionBar flat="true" backgroundColor="blue"> | ||
| 4 | + <Label text="flat action bar"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <ScrollView backgroundColor="green"> | ||
| 8 | + <Label text="lorem ipsum" backgroundColor="red"></Label> | ||
| 9 | + </ScrollView> | ||
| 10 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,14 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd"> | ||
| 2 | + | ||
| 3 | + <ActionBar flat="true"> | ||
| 4 | + <Label text="flat action bar"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <TabView selectedTabTextColor="green"> | ||
| 8 | + <TabViewItem title="First"> | ||
| 9 | + <GridLayout backgroundColor="red"> | ||
| 10 | + <Button text="test" backgroundColor="yellow"></Button> | ||
| 11 | + </GridLayout> | ||
| 12 | + </TabViewItem> | ||
| 13 | + </TabView> | ||
| 14 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,6 +22,8 @@ export function loadExamples() { | |||
| 22 | 22 | examples.set("modalHiddenActBar", "action-bar/modal-test-hidden-action-bar"); | |
| 23 | 23 | examples.set("modalShownActBar", "action-bar/modal-test-with-action-bar"); | |
| 24 | 24 | examples.set("flat", "action-bar/flat"); | |
| 25 | + examples.set("flat-tab", "action-bar/flat-tab"); | ||
| 26 | + examples.set("flat-scrollview", "action-bar/flat-scrollview"); | ||
| 25 | 27 | ||
| 26 | 28 | return examples; | |
| 27 | 29 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,10 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd" actionBarHidden="true"> | ||
| 2 | + | ||
| 3 | + <ActionBar> | ||
| 4 | + <Label text="Parent page"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <GridLayout backgroundColor="blue"> | ||
| 8 | + <Frame id="nestedFrame" defaultPage="ui-tests-app/nested-frames/nested-page-flat" actionBarVisibility="always"></Frame> | ||
| 9 | + </GridLayout> | ||
| 10 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,10 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd"> | ||
| 2 | + | ||
| 3 | + <ActionBar flat="true"> | ||
| 4 | + <Label text="Parent page flat action bar"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <GridLayout backgroundColor="blue"> | ||
| 8 | + <Frame id="nestedFrame" defaultPage="ui-tests-app/nested-frames/nested-page" actionBarVisibility="never"></Frame> | ||
| 9 | + </GridLayout> | ||
| 10 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,10 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd"> | ||
| 2 | + | ||
| 3 | + <ActionBar flat="true"> | ||
| 4 | + <Label text="Parent page flat action bar"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <GridLayout backgroundColor="blue"> | ||
| 8 | + <Frame id="nestedFrame" defaultPage="ui-tests-app/nested-frames/nested-page-flat" actionBarVisibility="always"></Frame> | ||
| 9 | + </GridLayout> | ||
| 10 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,15 +13,24 @@ export function loadExamples() { | |||
| 13 | 13 | const examples = new Map<string, string>(); | |
| 14 | 14 | examples.set("full-screen-n-n", "nested-frames/full-screen-n-n"); | |
| 15 | 15 | examples.set("full-screen-n-y", "nested-frames/full-screen-n-y"); | |
| 16 | + examples.set("full-screen-n-y-flat", "nested-frames/full-screen-n-y-flat"); | ||
| 16 | 17 | examples.set("full-screen-y-n", "nested-frames/full-screen-y-n"); | |
| 18 | + examples.set("full-screen-y-n-flat", "nested-frames/full-screen-y-n-flat"); | ||
| 17 | 19 | examples.set("full-screen-y-y", "nested-frames/full-screen-y-y"); | |
| 20 | + examples.set("full-screen-y-y-flat", "nested-frames/full-screen-y-y-flat"); | ||
| 18 | 21 | examples.set("mid-screen-n-n", "nested-frames/mid-screen-n-n"); | |
| 19 | 22 | examples.set("mid-screen-n-y", "nested-frames/mid-screen-n-y"); | |
| 23 | + examples.set("mid-screen-n-y-flat", "nested-frames/mid-screen-n-y-flat"); | ||
| 20 | 24 | examples.set("mid-screen-y-n", "nested-frames/mid-screen-y-n"); | |
| 25 | + examples.set("mid-screen-y-n-flat", "nested-frames/mid-screen-y-n-flat"); | ||
| 21 | 26 | examples.set("mid-screen-y-y", "nested-frames/mid-screen-y-y"); | |
| 27 | + examples.set("mid-screen-y-y-flat", "nested-frames/mid-screen-y-y-flat"); | ||
| 22 | 28 | examples.set("tab-y-y", "nested-frames/tab-y-y"); | |
| 29 | + examples.set("tab-y-y-flat", "nested-frames/tab-y-y-flat"); | ||
| 23 | 30 | examples.set("tab-n-y", "nested-frames/tab-n-y"); | |
| 31 | + examples.set("tab-n-y-flat", "nested-frames/tab-n-y-flat"); | ||
| 24 | 32 | examples.set("tab-y-n", "nested-frames/tab-y-n"); | |
| 33 | + examples.set("tab-y-n-flat", "nested-frames/tab-y-n-flat"); | ||
| 25 | 34 | examples.set("tab-n-n", "nested-frames/tab-n-n"); | |
| 26 | 35 | ||
| 27 | 36 | return examples; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,12 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd" actionBarHidden="true"> | ||
| 2 | + | ||
| 3 | + <ActionBar> | ||
| 4 | + <Label text="Parent page"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <GridLayout rows="200, *" backgroundColor="blue"> | ||
| 8 | + <GridLayout row="1"> | ||
| 9 | + <Frame id="nestedFrame" defaultPage="ui-tests-app/nested-frames/nested-page-flat" actionBarVisibility="always"></Frame> | ||
| 10 | + </GridLayout>> | ||
| 11 | + </GridLayout> | ||
| 12 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,12 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd"> | ||
| 2 | + | ||
| 3 | + <ActionBar flat="true"> | ||
| 4 | + <Label text="Parent page flat action bar"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <GridLayout rows="200, *" backgroundColor="blue"> | ||
| 8 | + <GridLayout row="1"> | ||
| 9 | + <Frame id="nestedFrame" defaultPage="ui-tests-app/nested-frames/nested-page" actionBarVisibility="never"></Frame> | ||
| 10 | + </GridLayout>> | ||
| 11 | + </GridLayout> | ||
| 12 | + </Page> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,12 @@ | |||
| 1 | + <Page xmlns="http://schemas.nativescript.org/tns.xsd"> | ||
| 2 | + | ||
| 3 | + <ActionBar flat="true"> | ||
| 4 | + <Label text="Parent page flat action bar"></Label> | ||
| 5 | + </ActionBar> | ||
| 6 | + | ||
| 7 | + <GridLayout rows="200, *" backgroundColor="blue"> | ||
| 8 | + <GridLayout row="1"> | ||
| 9 | + <Frame id="nestedFrame" defaultPage="ui-tests-app/nested-frames/nested-page-flat" actionBarVisibility="always"></Frame> | ||
| 10 | + </GridLayout>> | ||
| 11 | + </GridLayout> | ||
| 12 | + </Page> | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments