Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created June 6, 2018 04:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/afc4987b352288c5b2b67ded0ca2e1f2 to your computer and use it in GitHub Desktop.
Save juucustodio/afc4987b352288c5b2b67ded0ca2e1f2 to your computer and use it in GitHub Desktop.
Example of popup in Xamarin.Forms applications. - http://julianocustodio.com/popup
<?xml version="1.0" encoding="UTF-8"?>
<pages:PopupPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="DemoPopup.PopupView"
xmlns:pages="clr-namespace:Rg.Plugins.Popup.Pages;assembly=Rg.Plugins.Popup">
<StackLayout Margin="18"
Padding="36"
HorizontalOptions="Center"
VerticalOptions="Center"
BackgroundColor="White"
HeightRequest="100"
WidthRequest="300">
<Label Text="Hello Xamarin.Forms!" HorizontalOptions="Center"
VerticalOptions="Center"/>
</StackLayout>
</pages:PopupPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment