Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
[iOS] Fix missing binding context for popup view (#1003)
Browse files Browse the repository at this point in the history
* [iOS] Fix missing binding context for popup view

* Fix handle binding context changes.
  • Loading branch information
geskill committed Mar 6, 2021
1 parent 8ba1904 commit 5acf5fd
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ void CreateControl()
Control = Platform.CreateRenderer(contentPage);
Platform.SetRenderer(contentPage, Control);
contentPage.Parent = Application.Current.MainPage;
contentPage.SetBinding(VisualElement.BindingContextProperty, new Binding { Source = Element, Path = VisualElement.BindingContextProperty.PropertyName });
}

void SetViewController()
Expand Down

0 comments on commit 5acf5fd

Please sign in to comment.