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
2024-02-21 08:34:20 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
406396bfe49447c434ee291ef4dae8de01849607
406396bf
1 parent
6691b09a
Update dependencies
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
5 deletions
pdf/analysis_options.yaml
pdf/pubspec.yaml
printing/analysis_options.yaml
printing/ios/Classes/PrintJob.swift
printing/pubspec.yaml
widget_wrapper/pubspec.yaml
pdf/analysis_options.yaml
View file @
406396b
...
...
@@ -8,6 +8,7 @@ analyzer:
todo
:
ignore
avoid_print
:
ignore
no_leading_underscores_for_local_identifiers
:
ignore
use_super_parameters
:
ignore
linter
:
rules
:
...
...
pdf/pubspec.yaml
View file @
406396b
...
...
@@ -29,5 +29,5 @@ dependencies:
xml
:
"
>=6.3.0
<7.0.0"
dev_dependencies
:
flutter_lints
:
^
2
.0.0
flutter_lints
:
^
3
.0.0
test
:
"
>=1.16.0
<2.0.0"
...
...
printing/analysis_options.yaml
View file @
406396b
...
...
@@ -6,6 +6,7 @@ analyzer:
missing_return
:
warning
public_member_api_docs
:
ignore
todo
:
ignore
use_super_parameters
:
ignore
linter
:
rules
:
...
...
printing/ios/Classes/PrintJob.swift
View file @
406396b
...
...
@@ -283,7 +283,7 @@ public class PrintJob: UIPrintPageRenderer, UIPrintInteractionControllerDelegate
// clear WKWebView cache
if
#available(iOS 9.0, *)
{
WKWebsiteDataStore
.
default
()
.
fetchDataRecords
(
ofTypes
:
WKWebsiteDataStore
.
allWebsiteDataTypes
())
{
records
in
records
.
forEach
{
record
in
for
record
in
records
{
WKWebsiteDataStore
.
default
()
.
removeData
(
ofTypes
:
record
.
dataTypes
,
for
:
[
record
],
completionHandler
:
{})
}
}
...
...
printing/pubspec.yaml
View file @
406396b
...
...
@@ -29,14 +29,14 @@ dependencies:
sdk
:
flutter
http
:
"
>=0.13.0
<2.0.0"
image
:
^4.0.02
js
:
^0.6.3
js
:
"
>=0.6.3
<1.0.0"
meta
:
"
>=1.3.0
<2.0.0"
pdf
:
^3.10.0
pdf_widget_wrapper
:
'
>=1.0.0
<2.0.0'
plugin_platform_interface
:
^2.1.0
dev_dependencies
:
flutter_lints
:
^
2.0.1
flutter_lints
:
^
3.0.0
flutter_test
:
sdk
:
flutter
mockito
:
^5.3.2
...
...
widget_wrapper/pubspec.yaml
View file @
406396b
...
...
@@ -20,7 +20,7 @@ dependency_overrides:
path
:
../pdf
dev_dependencies
:
flutter_lints
:
^
2
.0.0
flutter_lints
:
^
3
.0.0
flutter_test
:
sdk
:
flutter
...
...
Please
register
or
login
to post a comment