Hi,
I am currently using Rg.popup in my project and i consider to replace with sfPopup. i wonder if it is possible to replace it simply. because Rg.popup creates a page itself like below.
<pages:PopupPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:Rg.Plugins.Popup.Pages;assembly=Rg.Plugins.Popup"
x:Class="myApp.InfoPopupPage">
<pages:PopupPage.Content>
as you it derives from contentpage. So i create separate popuppage
and on any viewmodel, i will call simply
InfoPopupPage page1 = new InfoPopupPage();
await _navigation.PushPopupAsync(page1);
Can I have similar usage with sfPopup?