Skip to content

Commit

Permalink
Make xaml nicer.
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanolkies committed Jun 8, 2018
1 parent 7a4ccc5 commit 405976e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CleanUp/App.xaml
Original file line number Original file line Diff line number Diff line change
@@ -1,2 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Application xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="CleanUp.App" /> <Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CleanUp.App" />
8 changes: 6 additions & 2 deletions CleanUp/MainPage.xaml
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:CleanUp" x:Class="CleanUp.MainPage"> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:CleanUp"
x:Class="CleanUp.MainPage">
<StackLayout> <StackLayout>
<Label Text="Welcome to Xamarin.Forms!" HorizontalOptions="Center" VerticalOptions="CenterAndExpand" /> <Label Text="Welcome to Xamarin.Forms!"
HorizontalOptions="Center" VerticalOptions="CenterAndExpand" />
</StackLayout> </StackLayout>
</ContentPage> </ContentPage>

0 comments on commit 405976e

Please sign in to comment.