1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-29 14:43:50 +00:00

Organizated pages into folders based on app "section"

This commit is contained in:
Kyle Spearrin
2016-07-01 19:21:12 -04:00
parent 5a34d4cd6d
commit cd4f1f4c2f
14 changed files with 16 additions and 16 deletions

View File

@@ -175,7 +175,7 @@ namespace Bit.App.Pages
private void SyncCell_Tapped(object sender, EventArgs e)
{
Navigation.PushAsync(new SyncPage());
Navigation.PushAsync(new SettingsSyncPage());
}
private void LockCell_Tapped(object sender, EventArgs e)

View File

@@ -10,13 +10,13 @@ using XLabs.Ioc;
namespace Bit.App.Pages
{
public class SyncPage : ExtendedContentPage
public class SettingsSyncPage : ExtendedContentPage
{
private readonly ISyncService _syncService;
private readonly IUserDialogs _userDialogs;
private readonly IConnectivity _connectivity;
public SyncPage()
public SettingsSyncPage()
{
_syncService = Resolver.Resolve<ISyncService>();
_userDialogs = Resolver.Resolve<IUserDialogs>();