Open enoiu opened 1 year ago
When viewing a PDF in landscape orientation, the PDF does not fit the screen. When I move to the next page, it fits the screen.
According to this pull, the initial zoom bug on iOS seems to have been resolved, but I think this bug has not been resolved for landscape PDFs.
Up
Same issue for Android
When viewing a PDF in landscape orientation, the PDF does not fit the screen. When I move to the next page, it fits the screen.
According to this pull, the initial zoom bug on iOS seems to have been resolved, but I think this bug has not been resolved for landscape PDFs.
flutter doctor
``` Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.10.2, on macOS 13.2.1 22D68 darwin-arm64, locale ja-JP) [✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 14.1) [✓] Chrome - develop for the web [✓] Android Studio (version 2021.1) [✓] VS Code (version 1.78.2) [✓] Connected device (4 available) [✓] Network resources • No issues found! ```Movie
https://github.com/endigo/flutter_pdfview/assets/69666654/ad020df9-f170-44bc-8baf-f518d963b014Code Example
```dart import 'dart:async'; import 'dart:io'; import 'package:file_picker/file_picker.dart'; import 'package:file_saver/file_saver.dart'; import 'package:flutter/material.dart'; import 'package:flutter_pdfview/flutter_pdfview.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State