mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
24 lines
471 B
C#
24 lines
471 B
C#
using System;
|
|
using Bit.App.Controls;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class SettingsHelpPage : ExtendedContentPage
|
|
{
|
|
public SettingsHelpPage()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
public void Init()
|
|
{
|
|
// TODO: hockeyapp feedback, link to website help
|
|
|
|
var stackLayout = new StackLayout { };
|
|
|
|
Title = "Help and Support";
|
|
Content = stackLayout;
|
|
}
|
|
}
|
|
}
|