Skip to content

缩放

设置显示 PDF 文档的默认缩放因子,默认为 1.0,限制范围为 1.05.0

dart
Scaffold(
  resizeToAvoidBottomInset: false,
  appBar: AppBar(),
  body: CPDFReaderWidget(
    document: documentPath,
    configuration: CPDFConfiguration(
      readerViewConfig: const ReaderViewConfig(pageScale: 1.0)),
    onCreated: (controller) {},
  ));