mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo" class="page">
|
|
<Page.actionBar>
|
|
<ActionBar title="FontAwesome" class="action-bar">
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
<StackLayout class="p-20">
|
|
<Label text="Tap the button" class="h1 text-center"/>
|
|
<Label text="" class="font-awesome" fontFamily="FontAwesome" />
|
|
<Button text="TAP" tap="onTap">
|
|
<FormattedString>
|
|
<Span text="" class="font-awesome" fontFamily="FontAwesome" color="white"></Span>
|
|
<Span text="font-awesome" fontWeight="bold"></Span>
|
|
</FormattedString>
|
|
</Button>
|
|
<Button text="TAP" tap="onTap" class="">
|
|
<FormattedString>
|
|
<Span text="" fontFamily="FontAwesome" color="white"></Span>
|
|
<Span text="some text" fontWeight="bold"></Span>
|
|
</FormattedString>
|
|
</Button>
|
|
<Button text="TAP" tap="onTap" class="">
|
|
<FormattedString>
|
|
<Span text="" fontFamily="FontAwesome" color="white"></Span>
|
|
<Span text="some text" fontWeight="bold"></Span>
|
|
</FormattedString>
|
|
</Button>
|
|
<Button text="TAP" tap="onTap" class="">
|
|
<FormattedString>
|
|
<Span text="" fontFamily="FontAwesome" color="white"></Span>
|
|
<Span text="some text" fontWeight="bold"></Span>
|
|
</FormattedString>
|
|
</Button>
|
|
<Button text="TAP" tap="onTap" class="">
|
|
<FormattedString>
|
|
<Span text="" fontFamily="FontAwesome" color="white"></Span>
|
|
<Span text="some text" fontWeight="bold"></Span>
|
|
</FormattedString>
|
|
</Button>
|
|
<Button text="TAP" tap="onTap" class="">
|
|
<FormattedString>
|
|
<Span text="" fontFamily="FontAwesome" color="white"></Span>
|
|
<Span text="some text" fontWeight="bold"></Span>
|
|
</FormattedString>
|
|
</Button>
|
|
<Label text="{{ message }}" class="h2 text-center" textWrap="true"/>
|
|
</StackLayout>
|
|
</Page>
|