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

50 lines
2.1 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-05-14 16:09:35 +03:00
xmlns:u="clr-namespace:Bit.App.Utilities"
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-05-14 16:09:35 +03:00
<ScrollView x:Name="_scrollView">
<StackLayout Spacing="20">
<StackLayout StyleClass="box">
<StackLayout StyleClass="box-row-header">
<Label Text="{u:I18n Manage}"
StyleClass="box-header, box-header-platform" />
</StackLayout>
</StackLayout>
<StackLayout StyleClass="box">
<StackLayout StyleClass="box-row-header">
<Label Text="{u:I18n Security}"
StyleClass="box-header, box-header-platform" />
</StackLayout>
</StackLayout>
<StackLayout StyleClass="box">
<StackLayout StyleClass="box-row-header">
<Label Text="{u:I18n Account}"
StyleClass="box-header, box-header-platform" />
</StackLayout>
</StackLayout>
<StackLayout StyleClass="box">
<StackLayout StyleClass="box-row-header">
<Label Text="{u:I18n Tools}"
StyleClass="box-header, box-header-platform" />
</StackLayout>
</StackLayout>
<StackLayout StyleClass="box">
<StackLayout StyleClass="box-row-header">
<Label Text="{u:I18n Other}"
StyleClass="box-header, box-header-platform" />
</StackLayout>
</StackLayout>
</StackLayout>
</ScrollView>
2019-03-29 00:10:10 +03:00
</ContentPage>