summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Platform.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Platform.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Platform.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Platform.cs b/Xamarin.Forms.Platform.Tizen/Platform.cs
index c7a89b06..69a435e3 100644
--- a/Xamarin.Forms.Platform.Tizen/Platform.cs
+++ b/Xamarin.Forms.Platform.Tizen/Platform.cs
@@ -137,7 +137,11 @@ namespace Xamarin.Forms.Platform.Tizen
naviItem.TitleBarVisible = false;
((Application)Page.RealParent).NavigationProxy.Inner = this;
- CurrentPageController?.SendAppearing();
+ Device.StartTimer(TimeSpan.Zero, () =>
+ {
+ CurrentPageController?.SendAppearing();
+ return false;
+ });
}
public SizeRequest GetNativeSize(VisualElement view, double widthConstraint, double heightConstraint)