Base App Interface

"J'avais oublié de branch"
This commit is contained in:
2019-03-10 21:40:47 +01:00
parent 4a23135e34
commit 21c10ecd43
30 changed files with 890 additions and 38 deletions

View File

@@ -0,0 +1,17 @@
<?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:extensions="clr-namespace:PlantBox.Client.Extensions"
x:Class="PlantBox.Client.Forms.HomePage">
<ContentPage.Content>
<StackLayout>
<Label Text="{extensions:Locale HomePageTitle}"
HorizontalOptions="Center"
VerticalOptions="CenterAndExpand" />
<Image x:Name="image"
VerticalOptions="CenterAndExpand"
WidthRequest="50"
Source="{extensions:ImageResource Info.png}"/>
</StackLayout>
</ContentPage.Content>
</ContentPage>