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
2020-03-18 19:44:12 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c5333cd8795ac4d52ac4629161589ddc69a3ffea
c5333cd8
1 parent
e407eb0a
Fix #243 layoutPdf does not return on Flutter Web
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
printing/lib/src/printing_web.dart
printing/lib/src/printing_web.dart
View file @
c5333cd
...
...
@@ -24,8 +24,8 @@ import 'dart:ui';
import
'package:flutter/rendering.dart'
show
Rect
;
import
'package:flutter_web_plugins/flutter_web_plugins.dart'
;
import
'package:pdf/pdf.dart'
;
import
'package:printing/src/raster.dart'
;
import
'package:printing/src/printer.dart'
;
import
'package:printing/src/raster.dart'
;
import
'callback.dart'
;
import
'interface.dart'
;
...
...
@@ -91,7 +91,6 @@ class PrintingPlugin extends PrintingPlatform {
// 'height: 400px; width: 600px; position: absolute; z-index: 1000',
);
frame
.
setAttribute
(
'sandbox'
,
'allow-scripts'
);
frame
.
setAttribute
(
'id'
,
_frameId
);
frame
.
setAttribute
(
'src'
,
pdfUrl
);
...
...
Please
register
or
login
to post a comment