Hello, I want to tha backgtound color around this pdf (this grey color) to be equal to the background to the app. How can I do this?
This is my code:
BackgroundColor="{StaticResource BackgroundColor}">
<ContentView.BindingContext>
<local:PdfViewerViewModel></local:PdfViewerViewModel>
</ContentView.BindingContext>
<Grid>
<syncfusion:SfPdfViewer x:Name="pdfViewerControl" InputFileStream="{Binding About}"
HyperlinkClicked="pdfViewerControl_HyperlinkClicked"
AllowHyperlinkNavigation="True"
IsToolbarVisible="False"
EnableScrollHead="False"
HorizontalOffset="0"
VerticalOffset="0"
VerticalOptions="FillAndExpand"/>
</Grid>
</ContentView>