Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2023-12-03 08:20:26 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
53f30b8567bc410982785c660e3dd2d0f6472de3
53f30b85
1 parent
2d0ca36a
Add compatibility with Flutter 3.18.0-1.0.pre.23
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
widget_wrapper/CHANGELOG.md
widget_wrapper/lib/src/widget_wrapper.dart
widget_wrapper/pubspec.yaml
widget_wrapper/CHANGELOG.md
View file @
53f30b8
# Changelog
## 1.0.2
-
Add compatibility with Flutter 3.18.0-1.0.pre.23
## 1.0.1
-
Add compatibility with Flutter 3.10
## 1.0.0
-
Initial release.
...
...
widget_wrapper/lib/src/widget_wrapper.dart
View file @
53f30b8
...
...
@@ -170,8 +170,10 @@ class WidgetWrapper extends pw.ImageProvider {
child:
RenderPositionedBox
(
alignment:
Alignment
.
center
,
child:
repaintBoundary
),
configuration:
ViewConfiguration
(
size:
Size
(
computedConstraints
.
maxWidth
,
computedConstraints
.
maxHeight
),
constraints:
ui
.
ViewConstraints
(
maxWidth:
computedConstraints
.
maxWidth
,
maxHeight:
computedConstraints
.
maxHeight
,
),
devicePixelRatio:
view
.
devicePixelRatio
),
view:
view
,
);
...
...
widget_wrapper/pubspec.yaml
View file @
53f30b8
...
...
@@ -4,11 +4,11 @@ description: >
homepage
:
https://github.com/DavBfr/dart_pdf/tree/master/widget_wrapper
repository
:
https://github.com/DavBfr/dart_pdf
issue_tracker
:
https://github.com/DavBfr/dart_pdf/issues
version
:
1.0.
1
version
:
1.0.
2
environment
:
sdk
:
"
>=2.18.0
<4.0.0"
flutter
:
"
>=3.9.0"
flutter
:
"
>=3.
18.0-1.0.pre.23<3.1
9.0"
dependencies
:
flutter
:
...
...
Please
register
or
login
to post a comment