Hi Syncfusion team,
I am using Syncfusion Pdf viewer in my xamarin.forms UWP app. The pdf zoompercentage not working for me.
I am using syncfusion pdfviewer version : 18.4.0.41
What I am trying to achieve is , make the pdf width fit to screen defaultly. Currently it is loading as small and we need to manually zoom in for better readability. I tried to set the ViewMode="FitWidth" and Zoomzpercentage ="100". But no luck.
My xaml
<StackLayout
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<syncfusion:SfPdfViewer
HorizontalOptions="FillAndExpand"
InputFileStream="{Binding FileInBase64, Converter={StaticResource base64ToStreamConverter}}"
IsPasswordViewEnabled="False"
PageViewMode="PageByPage"
ShowPageNumber="True"
ZoomPercentage="100"
ViewMode="FitWidth"
Toolbar="{StaticResource ToolbarSettings}"
VerticalOptions="FillAndExpand">
</syncfusion:SfPdfViewer>
</StackLayout>
Any help for solving this issue is appriciated,.
Reagards,
Anand