mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
42 lines
1.9 KiB
XML
42 lines
1.9 KiB
XML
<?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.SettingsPage"
|
|
xmlns:pages="clr-namespace:Bit.App.Pages"
|
|
xmlns:controls="clr-namespace:Bit.App.Controls"
|
|
xmlns:bv="clr-namespace:Bit.App.Controls.BoxedView"
|
|
x:DataType="pages:SettingsPageViewModel"
|
|
Title="{Binding PageTitle}">
|
|
<ContentPage.BindingContext>
|
|
<pages:SettingsPageViewModel />
|
|
</ContentPage.BindingContext>
|
|
|
|
<bv:BoxedView HasUnevenRows="True">
|
|
<bv:BoxedSection Title="The Title"
|
|
FooterText="The Footer"
|
|
UseDragSort="True">
|
|
<bv:EntryCell Title="The title"
|
|
ValueText="The value for entry"
|
|
Button1Icon="cogs"
|
|
Button1Command="{Binding ButtonCommand}"
|
|
Button2Icon="cogs"
|
|
Button2Command="{Binding Button2Command}"
|
|
Button3Icon="cogs" />
|
|
<bv:LabelCell Title="The title"
|
|
ValueText="The value" />
|
|
<bv:LabelCell Title="The title 2"
|
|
Button1Icon="cogs"
|
|
Button1Command="{Binding ButtonCommand}"
|
|
Button3Icon="cogs"
|
|
ValueText="The value" />
|
|
<bv:LabelCell Title="The title 3"
|
|
ValueText="The value"
|
|
Button3Icon="cogs" />
|
|
<bv:LabelCell Title="The title 4"
|
|
ValueText="The value" />
|
|
<bv:LabelCell Title="The title 5"
|
|
ValueText="The value" />
|
|
</bv:BoxedSection>
|
|
</bv:BoxedView>
|
|
|
|
</ContentPage>
|