mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
16 lines
483 B
XML
16 lines
483 B
XML
<Page>
|
|
<StackLayout orientation="vertical">
|
|
|
|
<!-- WebView: local and string -->
|
|
<WebView src="~/web-view/test.html" height="50" />
|
|
<WebView src="<html><body><img src='./pages/test2.png'></img></body></html>" height="75" />
|
|
|
|
<!-- Resources: png and jpg -->
|
|
<WrapLayout>
|
|
<Image src="res://icon" stretch ="none" />
|
|
<Image src="res://logo" stretch ="none" />
|
|
</WrapLayout>
|
|
|
|
</StackLayout>
|
|
</Page>
|