bitwarden-android/src/App/Pages/SettingsPage.xaml

34 lines
1.4 KiB
Text
Raw Normal View History

2019-03-29 00:10:10 +03:00
<?xml version="1.0" encoding="utf-8" ?>
2019-03-30 00:54:03 +03:00
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Bit.App.Pages.SettingsPage"
xmlns:pages="clr-namespace:Bit.App.Pages"
xmlns:controls="clr-namespace:Bit.App.Controls"
2019-04-05 05:28:03 +03:00
xmlns:bv="clr-namespace:Bit.App.Controls.BoxedView"
2019-03-30 00:54:03 +03:00
x:DataType="pages:SettingsPageViewModel"
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>
2019-04-05 20:35:19 +03:00
<bv:BoxedView HasUnevenRows="True">
<bv:BoxedSection Title="The Title"
FooterText="The Footer"
UseDragSort="True">
<bv:EntryCell Title="The title"
ValueText="The value for entry" />
<bv:LabelCell Title="The title"
ValueText="The value" />
<bv:LabelCell Title="The title 2"
ValueText="The value" />
<bv:LabelCell Title="The title 3"
ValueText="The value" />
<bv:LabelCell Title="The title 4"
ValueText="The value" />
<bv:LabelCell Title="The title 5"
ValueText="The value" />
2019-04-05 05:28:03 +03:00
</bv:BoxedSection>
</bv:BoxedView>
2019-03-29 00:10:10 +03:00
</ContentPage>