| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| .custom-tabstrip { | ||
| height: 100; | ||
| vertical-align: bottom; | ||
| ios-overflow-safe-area-enabled: false; | ||
| } | ||
|
|
||
| .custom-tabstripitem { | ||
| height: 80; | ||
| width: 80; | ||
| vertical-align: center; | ||
| horizontal-align: center; | ||
| clip-path: circle(100% at 50% 50%); | ||
| } | ||
|
|
||
| .custom-title { | ||
| color: white; | ||
| vertical-align: center; | ||
| horizontal-align: center; | ||
| } | ||
|
|
||
| .skyblue { | ||
| background-color: skyblue; | ||
| } | ||
|
|
||
| .gold { | ||
| background-color: gold; | ||
| } | ||
|
|
||
| .olive { | ||
| background-color: olive; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| import { EventData } from "tns-core-modules/data/observable"; | ||
| import { Page } from "tns-core-modules/ui/page"; | ||
| import { BottomNavigation } from "tns-core-modules/ui/bottom-navigation"; | ||
|
|
||
| export function goToFirst(args: EventData) { | ||
| const page = <Page>(<any>args.object).page; | ||
| const bottomNav = <BottomNavigation>page.getViewById("bottomNav"); | ||
|
|
||
| bottomNav.selectedIndex = 0; | ||
| } | ||
|
|
||
| export function goToSecond(args: EventData) { | ||
| const page = <Page>(<any>args.object).page; | ||
| const bottomNav = <BottomNavigation>page.getViewById("bottomNav"); | ||
|
|
||
| bottomNav.selectedIndex = 1; | ||
| } | ||
|
|
||
| export function goToThird(args: EventData) { | ||
| const page = <Page>(<any>args.object).page; | ||
| const bottomNav = <BottomNavigation>page.getViewById("bottomNav"); | ||
|
|
||
| bottomNav.selectedIndex = 2; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| <Page> | ||
|
|
||
| <ActionBar title="BottomNavigation Custom TabStrip" icon="" class="action-bar"> | ||
| </ActionBar> | ||
|
|
||
| <GridLayout> | ||
| <GridLayout> | ||
| <BottomNavigation id="bottomNav" automationText="tabNavigation" > | ||
| <TabContentItem> | ||
| <GridLayout backgroundColor="skyblue"> | ||
| <Label text="First View"/> | ||
| </GridLayout> | ||
| </TabContentItem> | ||
| <TabContentItem> | ||
| <GridLayout backgroundColor="gold"> | ||
| <Label text="Second View"/> | ||
| </GridLayout> | ||
| </TabContentItem> | ||
| <TabContentItem> | ||
| <GridLayout backgroundColor="olive"> | ||
| <Label text="Third View"/> | ||
| </GridLayout> | ||
| </TabContentItem> | ||
| </BottomNavigation> | ||
| </GridLayout> | ||
|
|
||
| <GridLayout columns="*, *, *" class="custom-tabstrip"> | ||
| <GridLayout automationText="first-tab" col="0" class="custom-tabstripitem skyblue" tap="goToFirst"> | ||
| <Label text="First" class="custom-title"></Label> | ||
| </GridLayout> | ||
|
|
||
| <GridLayout automationText="second-tab" col="1" class="custom-tabstripitem gold" tap="goToSecond"> | ||
| <Label text="Second" class="custom-title"></Label> | ||
| </GridLayout> | ||
|
|
||
| <GridLayout automationText="third-tab" col="2" class="custom-tabstripitem olive" tap="goToThird"> | ||
| <Label text="Third" class="custom-title"></Label> | ||
| </GridLayout> | ||
| </GridLayout> | ||
| </GridLayout> | ||
| </Page> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| .custom-tabstrip { | ||
| height: 100; | ||
| vertical-align: bottom; | ||
| ios-overflow-safe-area-enabled: false; | ||
| } | ||
|
|
||
| .custom-tabstripitem { | ||
| height: 80; | ||
| width: 80; | ||
| vertical-align: center; | ||
| horizontal-align: center; | ||
| clip-path: circle(100% at 50% 50%); | ||
| } | ||
|
|
||
| .custom-title { | ||
| color: white; | ||
| vertical-align: center; | ||
| horizontal-align: center; | ||
| } | ||
|
|
||
| .skyblue { | ||
| background-color: skyblue; | ||
| } | ||
|
|
||
| .gold { | ||
| background-color: gold; | ||
| } | ||
|
|
||
| .olive { | ||
| background-color: olive; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| import { EventData } from "tns-core-modules/data/observable"; | ||
| import { Page } from "tns-core-modules/ui/page"; | ||
| import { Tabs } from "tns-core-modules/ui/tabs"; | ||
|
|
||
| export function goToFirst(args: EventData) { | ||
| const page = <Page>(<any>args.object).page; | ||
| const bottomNav = <Tabs>page.getViewById("tabsNav"); | ||
|
|
||
| bottomNav.selectedIndex = 0; | ||
| } | ||
|
|
||
| export function goToSecond(args: EventData) { | ||
| const page = <Page>(<any>args.object).page; | ||
| const bottomNav = <Tabs>page.getViewById("tabsNav"); | ||
|
|
||
| bottomNav.selectedIndex = 1; | ||
| } | ||
|
|
||
| export function goToThird(args: EventData) { | ||
| const page = <Page>(<any>args.object).page; | ||
| const bottomNav = <Tabs>page.getViewById("tabsNav"); | ||
|
|
||
| bottomNav.selectedIndex = 2; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| <Page> | ||
|
|
||
| <ActionBar title="Tabs Custom TabStrip" icon="" class="action-bar"> | ||
| </ActionBar> | ||
|
|
||
| <GridLayout> | ||
| <GridLayout> | ||
| <Tabs id="tabsNav" automationText="tabNavigation" > | ||
| <TabContentItem> | ||
| <GridLayout backgroundColor="skyblue"> | ||
| <Label text="First View"/> | ||
| </GridLayout> | ||
| </TabContentItem> | ||
| <TabContentItem> | ||
| <GridLayout backgroundColor="gold"> | ||
| <Label text="Second View"/> | ||
| </GridLayout> | ||
| </TabContentItem> | ||
| <TabContentItem> | ||
| <GridLayout backgroundColor="olive"> | ||
| <Label text="Third View"/> | ||
| </GridLayout> | ||
| </TabContentItem> | ||
| </Tabs> | ||
| </GridLayout> | ||
|
|
||
| <GridLayout columns="*, *, *" class="custom-tabstrip"> | ||
| <GridLayout automationText="first-tab" col="0" class="custom-tabstripitem skyblue" tap="goToFirst"> | ||
| <Label text="First" class="custom-title"></Label> | ||
| </GridLayout> | ||
|
|
||
| <GridLayout automationText="second-tab" col="1" class="custom-tabstripitem gold" tap="goToSecond"> | ||
| <Label text="Second" class="custom-title"></Label> | ||
| </GridLayout> | ||
|
|
||
| <GridLayout automationText="third-tab" col="2" class="custom-tabstripitem olive" tap="goToThird"> | ||
| <Label text="Third" class="custom-title"></Label> | ||
| </GridLayout> | ||
| </GridLayout> | ||
| </GridLayout> | ||
| </Page> |
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.