Skip to content

Instantly share code, notes, and snippets.

@sgarcia-dev
Created June 5, 2015 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgarcia-dev/6e31e1ee99141d10f79c to your computer and use it in GitHub Desktop.
Save sgarcia-dev/6e31e1ee99141d10f79c to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MyDrLynx.Views.LandingPage">
<StackLayout>
<Label VerticalOptions="Center" HorizontalOptions="Center" >
Landing Page
</Label>
<StackLayout Orientation="Horizontal">
<Image Source="images/xamarin.png" HeightRequest="50" WidthRequest="50" Aspect="Fill"></Image>
<Frame>
<Image Source="xamarin.png" HeightRequest="50" WidthRequest="100" Aspect="Fill"></Image>
</Frame>
<Button Text="Click me!"></Button>
</StackLayout>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment