summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.iOS')
-rw-r--r--Xamarin.Forms.Platform.iOS/Renderers/EntryRenderer.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.iOS/Renderers/EntryRenderer.cs b/Xamarin.Forms.Platform.iOS/Renderers/EntryRenderer.cs
index 2e37a95b..04eb6d4f 100644
--- a/Xamarin.Forms.Platform.iOS/Renderers/EntryRenderer.cs
+++ b/Xamarin.Forms.Platform.iOS/Renderers/EntryRenderer.cs
@@ -106,6 +106,12 @@ namespace Xamarin.Forms.Platform.iOS
void OnEditingEnded(object sender, EventArgs e)
{
+ // Typing aid changes don't always raise EditingChanged event
+ if (Control.Text != Element.Text)
+ {
+ ElementController.SetValueFromRenderer(Entry.TextProperty, Control.Text);
+ }
+
ElementController.SetValueFromRenderer(VisualElement.IsFocusedPropertyKey, false);
}