fix: Android initialization workaround

This commit is contained in:
Jerome Laban 2020-04-06 16:42:35 -04:00
Родитель a9cf804293
Коммит 58a249ab35
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");