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
2021-09-03 18:00:44 -0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f1e27ff81589686f346d8e259d57de12e3d278ff
f1e27ff8
1 parent
5dd4bd68
Fix iOS build warning
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
printing/CHANGELOG.md
printing/ios/Classes/PrintJob.swift
printing/CHANGELOG.md
View file @
f1e27ff
...
...
@@ -4,6 +4,7 @@
-
Update Google fonts
-
Fix typo in README
-
Fix an iOS build warning
## 5.5.0
...
...
printing/ios/Classes/PrintJob.swift
View file @
f1e27ff
...
...
@@ -197,7 +197,7 @@ public class PrintJob: UIPrintPageRenderer, UIPrintInteractionControllerDelegate
return
}
let
activityViewController
=
UIActivityViewController
(
activityItems
:
[
fileURL
,
body
],
applicationActivities
:
nil
)
let
activityViewController
=
UIActivityViewController
(
activityItems
:
[
fileURL
,
body
as
Any
],
applicationActivities
:
nil
)
activityViewController
.
setValue
(
subject
,
forKey
:
"subject"
)
if
UI_USER_INTERFACE_IDIOM
()
==
.
pad
{
let
controller
:
UIViewController
?
=
UIApplication
.
shared
.
keyWindow
?
.
rootViewController
...
...
Please
register
or
login
to post a comment