Button not working

What am i doing wrong here?

I have my button:

<Button ux:Name="skipBtn">
<Text Opacity=".9" Font="ProximaBold" >Skip</Text>
<Clicked>
<NavigateTo Target="StartScreen" />
</Clicked>
</Button>

And the page:

<Page ux:Name="StartScreen">
<LinearNavigation ux:Name="nav" Duration="0.50" Easing="CubicInOut" />
<Text TextColor="#fff">Starterino</Text>
<Panel Background="#000">
</Panel>
<EnteringAnimation>
    <Move X="-1" RelativeTo="Size" />
</EnteringAnimation>
<ExitingAnimation>
    <Move X="1" RelativeTo="Size" />
</ExitingAnimation>
</Page>

And here its the entire MainView.ux http://schi.mp/bh

Hi!

Your button doesn’t have anything clickable, as you’ve disabled the basictheme’s background.

If you want to have clickable transparent buttons, you have to do something like:

<Button HitTestMode="LocalBounds" />