changes transition to enter mask (#6066)

fixes #5216
This commit is contained in:
Shane Neuville 2019-05-03 12:38:46 -06:00 коммит произвёл Samantha Houts
Родитель 8a7ee8632e
Коммит d76044fece
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -246,7 +246,7 @@ namespace Xamarin.Forms.Platform.Android
FragmentTransaction transaction = manager.BeginTransaction();
if (animate)
transaction.SetTransition((int)global::Android.App.FragmentTransit.FragmentFade);
transaction.SetTransition((int)global::Android.App.FragmentTransit.EnterMask);
transaction.Replace(_frameLayout.Id, fragment);
transaction.CommitAllowingStateLoss();