mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
15 lines
793 B
XML
15 lines
793 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Page >
|
|
<Page.actionBar>
|
|
<ActionBar title="issue-4147">
|
|
<NavigationButton text="Go Back" android.systemIcon="ic_menu_back" tap="onNavBtnTap"/>
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
<StackLayout>
|
|
<!--The background-color shouldn't be inherit but in Android it is-->
|
|
<SearchBar id="bg-color" hint="bg-color" text="" textFieldHintColor="green" />
|
|
<SearchBar class="color" hint="color" text="color" />
|
|
<SearchBar hint="Hint Text" id="searchBar" textFieldHintColor="#FFFFFF" style="color:#FFFFFF;background-color: #795548;height:60" />
|
|
<SearchBar hint="Hint Text" textFieldHintColor="#FFFFFF" textFieldBackgroundColor="red" style="background-color:green;" />
|
|
</StackLayout>
|
|
</Page> |