2019-03-29 00:10:10 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2019-03-29 06:52:33 +03:00
|
|
|
x:Class="Bit.App.Pages.SettingsPage"
|
|
|
|
xmlns:pages="clr-namespace:Bit.App.Pages"
|
2019-03-29 16:16:22 +03:00
|
|
|
x:DataType="pages:SettingsPageViewModel"
|
2019-03-29 06:52:33 +03:00
|
|
|
Title="{Binding PageTitle}">
|
2019-03-29 00:10:10 +03:00
|
|
|
<ContentPage.BindingContext>
|
2019-03-29 06:52:33 +03:00
|
|
|
<pages:SettingsPageViewModel />
|
2019-03-29 00:10:10 +03:00
|
|
|
</ContentPage.BindingContext>
|
|
|
|
|
|
|
|
<StackLayout>
|
|
|
|
<!-- Place new controls here -->
|
|
|
|
<Label
|
2019-03-29 06:52:33 +03:00
|
|
|
Text="Settings!"
|
2019-03-29 00:10:10 +03:00
|
|
|
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>
|