Xamarin text input popup dialog

So, I'm a little new to Xamarin, and I'm trying to figure out how to display a popup with a text input / input field. DisplayAlert does not do this because it does not have a text input field. What should i use?

+7
popup xamarin
source share
2 answers
+6
source share

I personally like this nuget (the source on github ), which allows you to use PopupPage view inside the popup and elegantly as it adds the following methods that are very familiar with what we're all used to:

 Navigation.PushPopupAsync() Navigation.PopPopupAsync() Navigation.PopAllPopupAsync() Navigation.RemovePopupPageAsync() 

enter image description here

+1
source share

All Articles