mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
25 lines
453 B
C#
25 lines
453 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|