I'm using the SfPdfViewerServer control in my Blazor app, and it works fine on PC and Android, but on iOS the users are not able to scroll the page inside the control, in whether the hand or cursor mode.
<SfPdfViewerServer @ref="reportPreview" DownloadFileName="report.pdf" EnableDownload="@( !isTrialActive )" EnablePrint="@( !isTrialActive )" EnableAnnotation="false" EnableNavigationToolbar="false" DocumentPath="@reportPreviewData" Height="90%">
<PdfViewerToolbarSettings ToolbarItems="@reportPreviewToolbarItems" />
</SfPdfViewerServer>