mirror of
https://github.com/bitwarden/android.git
synced 2024-11-02 08:03:56 +03:00
62 lines
1.6 KiB
C#
62 lines
1.6 KiB
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Resources;
|
|
using Xamarin.Forms;
|
|
using XLabs.Ioc;
|
|
using Bit.App.Controls;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class SettingsPage : ContentPage
|
|
{
|
|
private readonly IAuthService _authService;
|
|
|
|
public SettingsPage()
|
|
{
|
|
_authService = Resolver.Resolve<IAuthService>();
|
|
|
|
Init();
|
|
}
|
|
|
|
private void Init()
|
|
{
|
|
var foldersCell = new ExtendedTextCell { Text = "Folders", ShowDisclousure = true };
|
|
foldersCell.Tapped += FoldersCell_Tapped;
|
|
|
|
var table = new ExtendedTableView
|
|
{
|
|
EnableScrolling = false,
|
|
Intent = TableIntent.Menu,
|
|
Root = new TableRoot
|
|
{
|
|
new TableSection("Manage Folders")
|
|
{
|
|
foldersCell
|
|
}
|
|
}
|
|
};
|
|
|
|
var logoutButton = new Button
|
|
{
|
|
Text = AppResources.LogOut,
|
|
Command = new Command(() =>
|
|
{
|
|
_authService.LogOut();
|
|
Application.Current.MainPage = new LoginNavigationPage();
|
|
})
|
|
};
|
|
|
|
var stackLayout = new StackLayout { };
|
|
stackLayout.Children.Add(table);
|
|
stackLayout.Children.Add(logoutButton);
|
|
|
|
Title = AppResources.Settings;
|
|
Content = stackLayout;
|
|
}
|
|
|
|
private void FoldersCell_Tapped(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|