mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
20 lines
754 B
XML
20 lines
754 B
XML
<Page >
|
|
<ScrollView>
|
|
<StackLayout width="50">
|
|
<Button text="Change" tap="butonTap" />
|
|
<Label id="Label1" text="Text Text" style.whiteSpace="normal" />
|
|
|
|
<Label text="Label Normal" style="white-space:normal" />
|
|
<Label text="Label Nowrap" style="white-space:nowrap" />
|
|
|
|
<TextField text="TextField Normal" style="white-space:normal" />
|
|
<TextField text="TextField Nowrap" style="white-space:nowrap" />
|
|
|
|
<TextView text="TextView Normal" style="white-space:normal" />
|
|
<TextView text="TextView Nowrap" style="white-space:nowrap" />
|
|
|
|
<Button text="Button Normal" style="white-space:normal" />
|
|
<Button text="Button Nowrap" style="white-space:nowrap" />
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</Page> |