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:
24
src/App/Pages/Settings/SettingsAboutPage.cs
Normal file
24
src/App/Pages/Settings/SettingsAboutPage.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user