1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

added new pages to settings. rearranged security section for settings.

This commit is contained in:
Kyle Spearrin
2016-07-23 02:48:56 -04:00
parent cf27ace05e
commit 7113bcca51
4 changed files with 98 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
using System;
using Bit.App.Controls;
using Xamarin.Forms;
namespace Bit.App.Pages
{
public class SettingsAboutPage : ExtendedContentPage
{
public SettingsAboutPage()
{
Init();
}
public void Init()
{
// TODO: version, credits, etc
var stackLayout = new StackLayout { };
Title = "About bitwarden";
Content = stackLayout;
}
}
}