mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Set autocorrect to false ini all-uniform and non uniform pages
This commit is contained in:
@@ -2,8 +2,8 @@
|
|||||||
<GridLayout rows="*,*,*,*,*,*" columns="*,*,*">
|
<GridLayout rows="*,*,*,*,*,*" columns="*,*,*">
|
||||||
<Button class="s0" row="0" col="0" text="Button"/>
|
<Button class="s0" row="0" col="0" text="Button"/>
|
||||||
<Label class="s0" row="0" col="1" text="Label"/>
|
<Label class="s0" row="0" col="1" text="Label"/>
|
||||||
<TextField class="s0" row="0" col="2" text="TextField"/>
|
<TextField class="s0" row="0" col="2" autocorrect="false" text="TextField"/>
|
||||||
<TextView class="s0" row="1" col="0" text="TextView"/>
|
<TextView class="s0" row="1" col="0" autocorrect="false" text="TextView"/>
|
||||||
<SearchBar id="sb" class="s0" row="1" col="1" text="SearchBar"/>
|
<SearchBar id="sb" class="s0" row="1" col="1" text="SearchBar"/>
|
||||||
<Switch class="s0" row="1" col="2" checked="true"/>
|
<Switch class="s0" row="1" col="2" checked="true"/>
|
||||||
<Slider class="s0" row="2" col="0" minValue="0" maxValue="100" value="50"/>
|
<Slider class="s0" row="2" col="0" minValue="0" maxValue="100" value="50"/>
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
<TimePicker class="s0" row="5" col="0" hour="5" minute="30"/>
|
<TimePicker class="s0" row="5" col="0" hour="5" minute="30"/>
|
||||||
<ListPicker class="s0" row="5" col="1" items="123"/>
|
<ListPicker class="s0" row="5" col="1" items="123"/>
|
||||||
<ScrollView class="s0" row="5" col="2">
|
<ScrollView class="s0" row="5" col="2">
|
||||||
<Label text="ScrollView" width="160" height="160" style.backgroundColor="gray"/>
|
<Label text="ScrollView" autocorrect="false" width="160" height="160" style.backgroundColor="gray"/>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</GridLayout>
|
</GridLayout>
|
||||||
</Page>
|
</Page>
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
<GridLayout rows="*,*,*,*,*,*" columns="*,*,*">
|
<GridLayout rows="*,*,*,*,*,*" columns="*,*,*">
|
||||||
<Button class="s0" row="0" col="0" text="Button"/>
|
<Button class="s0" row="0" col="0" text="Button"/>
|
||||||
<Label class="s0" row="0" col="1" text="Label"/>
|
<Label class="s0" row="0" col="1" text="Label"/>
|
||||||
<TextField class="s0" row="0" col="2" text="TextField"/>
|
<TextField class="s0" row="0" col="2" autocorrect="false" text="TextField"/>
|
||||||
<TextView class="s0" row="1" col="0" text="TextView Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec blandit, tortor vitae imperdiet gravida, eros neque scelerisque sapien, vel ultricies turpis ipsum vitae nisi. Sed ut consequat magna, scelerisque malesuada elit. Proin posuere purus dolor, semper sagittis dolor tempus ut. Praesent lorem mauris, ultricies eu faucibus quis, auctor ut leo. Mauris tincidunt justo id urna malesuada, at dapibus orci tincidunt. Suspendisse sollicitudin eget lorem porttitor pharetra. Phasellus cursus mauris ut urna sollicitudin pharetra."/>
|
<TextView class="s0" row="1" col="0" autocorrect="false" text="TextView Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec blandit, tortor vitae imperdiet gravida, eros neque scelerisque sapien, vel ultricies turpis ipsum vitae nisi. Sed ut consequat magna, scelerisque malesuada elit. Proin posuere purus dolor, semper sagittis dolor tempus ut. Praesent lorem mauris, ultricies eu faucibus quis, auctor ut leo. Mauris tincidunt justo id urna malesuada, at dapibus orci tincidunt. Suspendisse sollicitudin eget lorem porttitor pharetra. Phasellus cursus mauris ut urna sollicitudin pharetra."/>
|
||||||
<SearchBar id="sb" class="s0" row="1" col="1" text="SearchBar"/>
|
<SearchBar id="sb" class="s0" row="1" col="1" text="SearchBar"/>
|
||||||
<Switch class="s0" row="1" col="2" checked="true"/>
|
<Switch class="s0" row="1" col="2" checked="true"/>
|
||||||
<Slider class="s0" row="2" col="0" minValue="0" maxValue="100" value="50"/>
|
<Slider class="s0" row="2" col="0" minValue="0" maxValue="100" value="50"/>
|
||||||
@@ -11,7 +11,8 @@
|
|||||||
<ActivityIndicator class="s0" row="2" col="2" busy="false"/>
|
<ActivityIndicator class="s0" row="2" col="2" busy="false"/>
|
||||||
<Image class="s0" row="3" col="0" src="~/ui-tests-app/image-view/gravatar.png" stretch="fill"/>
|
<Image class="s0" row="3" col="0" src="~/ui-tests-app/image-view/gravatar.png" stretch="fill"/>
|
||||||
<ListView class="s0" row="3" col="1" items="ListView"/>
|
<ListView class="s0" row="3" col="1" items="ListView"/>
|
||||||
<HtmlView class="s0" row="3" col="2" html="<h1>HtmlView</h1>"/>
|
<HtmlView class="s0" row="3" col="2" html="
|
||||||
|
<h1>HtmlView</h1>"/>
|
||||||
<WebView class="s0" row="4" col="0" src="~/ui-tests-app/web-view/test.html"/>
|
<WebView class="s0" row="4" col="0" src="~/ui-tests-app/web-view/test.html"/>
|
||||||
<SegmentedBar class="s0" row="4" col="1">
|
<SegmentedBar class="s0" row="4" col="1">
|
||||||
<SegmentedBar.items>
|
<SegmentedBar.items>
|
||||||
@@ -23,7 +24,7 @@
|
|||||||
<TimePicker class="s0" row="5" col="0" hour="5" minute="30"/>
|
<TimePicker class="s0" row="5" col="0" hour="5" minute="30"/>
|
||||||
<ListPicker class="s0" row="5" col="1" items="123"/>
|
<ListPicker class="s0" row="5" col="1" items="123"/>
|
||||||
<ScrollView class="s0" row="5" col="2">
|
<ScrollView class="s0" row="5" col="2">
|
||||||
<Label text="ScrollView" width="160" height="160" style.backgroundColor="gray"/>
|
<Label text="ScrollView" autocorrect="false" width="160" height="160" style.backgroundColor="gray"/>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</GridLayout>
|
</GridLayout>
|
||||||
</Page>
|
</Page>
|
||||||
Reference in New Issue
Block a user