Atul Dhanuka
Atul Dhanuka

Reputation: 1463

How to Create Popup in Xamarin.Forms

I m new to Xamarin.Forms in which I have to create a popup which contain two Entry "Name" and "Age" and two button "Ok" and "Cancel" in click of "Ok" I have to take the value.

Please help me out how i can create the popup with code?

Upvotes: 1

Views: 9405

Answers (2)

FredyWenger
FredyWenger

Reputation: 2325

I suggest you to, to use the XLabs PopUp-Control (I use it in my App). You will find a documentation (how to use it) here: How to use XLabs PopUp-Control

And a documentation how to install and setup XLabs (if you don't already use it) here: How to install and setup XLabs

Upvotes: 0

Hristo Enev
Hristo Enev

Reputation: 2541

Try this NuGet package: https://www.nuget.org/packages/Acr.XamForms.UserDialogs/

A cross platform library that allows you to call for standard user dialogs from a shared/portable library. Supports Android, iOS, and Windows Phone 8

This is the github repo where you can find instructions and examples: https://github.com/aritchie/userdialogs

Upvotes: 2

Related Questions