Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make xaml nicer.
  • 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
@@ -1,2 +1,4 @@
<?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
@@ -1,6 +1,10 @@
<?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>
<Label Text="Welcome to Xamarin.Forms!" HorizontalOptions="Center" VerticalOptions="CenterAndExpand" />
<Label Text="Welcome to Xamarin.Forms!"
HorizontalOptions="Center" VerticalOptions="CenterAndExpand" />
</StackLayout>
</ContentPage>

0 comments on commit 405976e

Please sign in to comment.