You can create a Popup control in XAML and place it in your layout, and then set the content of the Popup using the Child property. You can also use the IsOpen property to open or close the Popup.
<Popup x:Name="MyPopup" IsOpen="False" >
<StackLayout>
<Label Text="My Popup Content" />
</StackLayout>
</Popup>