Hello,
I'm developing an APP (IOS ans Android) in xamarin forms Net.Standard, for this APP I need to use your PDF component for puping up a pdf of bill.
I don't understand if this package is correct for :
syncfusion.xamarin.pdf
have I install also this package ?
install-package Microsoft.NETCore.Portable.Compatibility
Is a possible to have an example of xaml page, in my case I don't know how I have to implement this
https://help.syncfusion.com/xamarin/sfpdfviewer/getting-started
Using syncfusion.xamarin.pdf how can I implement this part
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:GettingStarted"
x:Class="GettingStarted.MainPage"
xmlns:syncfusion="clr-namespace:Syncfusion.SfPdfViewer.XForms;assembly=Syncfusion.SfPdfViewer.XForms"
>
<ContentPage.BindingContext>
<local:PdfViewerViewModel></local:PdfViewerViewModel>
</ContentPage.BindingContext>
<Grid x:Name="pdfViewGrid">
<syncfusion:SfPdfViewer x:Name="pdfViewerControl" InputFileStream="{Binding PdfDocumentStream}"/>
</Grid>
</ContentPage>
tnx in advance