Merge pull request #61 from unoplatform/dev/jela/android-fix

Android update
This commit is contained in:
Jérôme Laban 2020-04-07 07:07:10 -04:00 коммит произвёл GitHub
Родитель a9cf804293 58a249ab35
Коммит fc9b960ac0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -281,6 +281,11 @@ namespace AppUIBasics
{
rootPage = new NavigationRootPage();
rootFrame = (Frame)rootPage.FindName("rootFrame");
#if HAS_UNO // UNO TODO FindName does not materialize the ContentControl content. https://github.com/unoplatform/uno/issues/2950
rootFrame = rootFrame ?? NavigationRootPage.RootFrame;
#endif
if (rootFrame == null)
{
throw new Exception("Root frame not found");