Pdf viewer or magazine viewer for xamarin

Andres M 1 Reputation point
2021-08-16T16:48:43.447+00:00

Hello Everyone, I am looking for a tool to show pdf files in xamarin, not like the syncfusion tool, because I am creating a magazine reader app, so I prefer render the document without the pdf toolbar, only the reader, if someones knows one beautiful tool pls let me know! Thanks.

Xamarin
Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,326 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Kyle Wang 5,531 Reputation points
    2021-08-17T02:01:24.757+00:00

    Hi AndresM-6995,

    Welcome to our Microsoft Q&A platform!

    Actually, SfPdfViewer provides the property "IsToolbarVisible". So if you want to hide toolbar, only need to set its "IsToolbarVisible" to "false".

    <syncfusion:SfPdfViewer x:Name="pdfViewerControl"   
            InputFileStream="{Binding PdfDocumentStream}"   
            IsToolbarVisible="False"/>  
    

    Regards,
    Kyle


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments