Update routing example to use existing custom app start

This commit is contained in:
Plac3hold3r 2017-08-24 20:38:09 +02:00
Родитель 5169ec637d
Коммит e691f38de1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 2935883DD562E877
1 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -1,6 +1,4 @@
using MvvmCross.Core.ViewModels;
using MvvmCross.Platform;
using RoutingExample.Core.ViewModels;
using MvvmCross.Core.ViewModels;
namespace RoutingExample.Core
{
@ -10,8 +8,11 @@ namespace RoutingExample.Core
{
base.Initialize();
// register the appstart object
RegisterNavigationServiceAppStart<MainViewModel>();
// register the generic appstart object and navigate to View Model with navigation service
//RegisterNavigationServiceAppStart<MainViewModel>();
// register the custom appstart object
RegisterCustomAppStart<AppStart>();
}
}
}