Skip to content

Instantly share code, notes, and snippets.

@kiramishima
Last active February 19, 2019 22:04
Show Gist options
  • Save kiramishima/952ce875054f4ea7f7b5d18958324ac3 to your computer and use it in GitHub Desktop.
Save kiramishima/952ce875054f4ea7f7b5d18958324ac3 to your computer and use it in GitHub Desktop.
Nativescript Fortnite Views App
<Page class="page"
navigatingTo="onNavigatingTo"
xmlns="http://schemas.nativescript.org/tns.xsd">
<ActionBar class="action-bar">
<Label class="action-bar-title" text="Home"></Label>
</ActionBar>
<StackLayout>
<Image src="~/images/fortnite_llama_logo.jpg" class="img_logo" />
<TextField hint='Ninja'
text='{{ txtSearch }}'
secure="false"
returnKeyType="search"
returnPress="{{ onReturnPress }}"
autocorrect="false"
focus="{{ onFocus }}"
blur="{{ onBlur }}"
class="search_input"/>
</StackLayout>
</Page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment