mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* refactor(ui-tests-app): tabmore example * fix(ui-tests-app): web-view query example * fix(ui-tests-app): misspelled img src path * feat(image-source): add set rotationAngle for iOS Compatibility with Android.
16 lines
484 B
XML
16 lines
484 B
XML
<Page>
|
|
<StackLayout orientation="vertical">
|
|
|
|
<!-- WebView: local and string -->
|
|
<WebView src="~/web-view/test.html" height="50" />
|
|
<WebView src="<html><body><img src='resources/images/test2.png'></img></body></html>" height="75" />
|
|
|
|
<!-- Resources: png and jpg -->
|
|
<WrapLayout>
|
|
<Image src="res://icon" stretch="none" />
|
|
<Image src="res://testlogo" stretch="none" />
|
|
</WrapLayout>
|
|
|
|
</StackLayout>
|
|
</Page>
|