Organize Views

This commit is contained in:
2020-11-29 15:22:56 -06:00
parent 60e03f2203
commit 12ec5905f1
17 changed files with 8 additions and 26 deletions
@@ -65,7 +65,7 @@ namespace qController.Pages
if (resp.Ok)
{
Console.WriteLine($"Passcode is null: {resp.Value == null}");
await Navigation.PushAsync(new WorkspacePage(selectedWorkspace, resp.Value));
await Navigation.PushAsync(new QWorkspacePage(selectedWorkspace, resp.Value));
}
}
@@ -73,7 +73,7 @@ namespace qController.Pages
}
else
{
await Navigation.PushAsync(new WorkspacePage(selectedWorkspace));
await Navigation.PushAsync(new QWorkspacePage(selectedWorkspace));
}
}