Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hi


* Take your example from 

from http://www.syncfusion.com/downloads/support/directtrac/general/ze/GettingStarted-81946798?_ga=2.73924754.1864490462.1555572654-961319033.1549560223 

*Update to newest packages:

XamarinForms project

<PackageReferenceInclude="Syncfusion.Xamarin.SfPdfViewer"Version="17.1.0.41"/>
 <PackageReferenceInclude="Xamarin.Forms"Version="3.6.0.344457"/>


 UWP Project:

<PackageReferenceInclude="Syncfusion.Xamarin.SfPdfViewer">
<Version>17.1.0.41</Version>
</PackageReference>
<PackageReferenceInclude="Xamarin.Forms"Version="3.6.0.344457"/>
<PackageReferenceInclude="Microsoft.NETCore.UniversalWindowsPlatform"Version="6.2.8"/>


* Cahnge MainPage,xaml

<Grid x:Name="pdfViewGrid" Padding="20" BackgroundColor="Accent">
        <Grid.RowDefinitions>
            <RowDefinition Height="10"/>
            <RowDefinition Height="*"/>
            <RowDefinition Height="10"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="10"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="10"/>
        </Grid.ColumnDefinitions>
        <Grid Grid.Row="1" Grid.Column="1" BackgroundColor="Gray">
            <syncfusion:SfPdfViewer x:Name="pdfViewerControl" />
        </Grid>
    </Grid>

*see Attachement: scrollbar is not complete visible