2019-03-28 03:12:44 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Xamarin.Forms;
|
2019-03-29 00:10:10 +03:00
|
|
|
|
using Xamarin.Forms.Xaml;
|
2019-03-28 03:12:44 +03:00
|
|
|
|
|
2019-03-29 00:10:10 +03:00
|
|
|
|
namespace Bit.App.Pages
|
2019-03-28 03:12:44 +03:00
|
|
|
|
{
|
2019-03-29 06:52:33 +03:00
|
|
|
|
public partial class SettingsPage : ContentPage
|
2019-03-28 03:12:44 +03:00
|
|
|
|
{
|
2019-03-29 06:52:33 +03:00
|
|
|
|
public SettingsPage()
|
2019-03-28 03:12:44 +03:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2019-04-05 23:13:17 +03:00
|
|
|
|
var viewModel = BindingContext as SettingsPageViewModel;
|
|
|
|
|
viewModel.Page = this;
|
2019-03-28 03:12:44 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|