mirror of
https://github.com/bitwarden/android.git
synced 2024-11-02 08:03:56 +03:00
25 lines
471 B
C#
25 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|