Webview

How i can make an app with webview using splash screen with a button then redirect to the website? In the first screen i want a splash screen with a button when i click it go to the webview, someone have a example?

Hello,

I think this is what you want.

<App Theme="Basic">
<Panel>    

<Panel ux:Name="Welcome" Color="#fff">
    <StackPanel Alignment="Center">
        <Image File="MyLogo.jpg" />
    <Button Width="100" Height="50" Text="Welcome">
    <Clicked>
        <Set Welcome.Opacity="0"/>
    </Clicked>
    </Button>
</StackPanel>
</Panel>

<Panel ux:Name="MyWebPage">
        <NativeViewHost>
            <WebView Dock="Fill" Url="http://google.com" />
        </NativeViewHost>
</Panel>


</Panel>
</App>

You can of course customize everything. Hope it helps.

Thanks!