mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
9 lines
568 B
XML
9 lines
568 B
XML
<Page loaded="onPageLoaded" css="{{ css }}">
|
|
<GridLayout id="gridLayout" columns="35, 35, *, 35" rows="35, *">
|
|
<Button text="←" col="0" tap="onBackButtonTap" id="backButton"/>
|
|
<Button text="→" col="1" tap="onForwardButtonTap" id="forwardButton"/>
|
|
<TextField col="2" id="urlTextField" text="{{ url }}" />
|
|
<Button text="↻" col="3" tap="onReloadButtonTap" id="reloadButton"/>
|
|
<WebView colSpan="4" row="2" id="webView" finishedLoading="onWebViewFinishedLoading" startedLoading="onWebViewStartedLoading" url="{{ url }}"/>
|
|
</GridLayout>
|
|
</Page> |