mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
32 lines
968 B
Text
32 lines
968 B
Text
|
<?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="Bit.App.Pages.HomePage"
|
||
|
xmlns:vm="clr-namespace:Bit.App.ViewModels"
|
||
|
Title="{Binding Title}">
|
||
|
<ContentPage.BindingContext>
|
||
|
<vm:HomeViewModel />
|
||
|
</ContentPage.BindingContext>
|
||
|
|
||
|
<StackLayout>
|
||
|
<!-- Place new controls here -->
|
||
|
<Label
|
||
|
Text="Home Page!"
|
||
|
HorizontalOptions="Center"
|
||
|
VerticalOptions="CenterAndExpand" />
|
||
|
<Label
|
||
|
Text=""
|
||
|
HorizontalOptions="Center"
|
||
|
VerticalOptions="CenterAndExpand">
|
||
|
|
||
|
<Label.FontFamily>
|
||
|
<OnPlatform x:TypeArguments="x:String"
|
||
|
Android="FontAwesome.ttf#FontAwesome"
|
||
|
iOS="FontAwesome" />
|
||
|
</Label.FontFamily>
|
||
|
</Label>
|
||
|
</StackLayout>
|
||
|
|
||
|
</ContentPage>
|