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
daniel
2020-09-23 15:59:00 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
David PHAM-VAN
2020-10-01 07:48:25 -0400
Commit
6ea3b1dbbbdb62f93d8cf0629952a5d18c49a037
6ea3b1db
1 parent
fb8965fe
Add color to DropdownMenuItem in pageFormat list
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
printing/lib/src/pdf_preview.dart
printing/lib/src/pdf_preview.dart
View file @
6ea3b1d
...
...
@@ -302,7 +302,11 @@ class _PdfPreviewState extends State<PdfPreview> {
final
key
=
keys
[
index
];
final
val
=
_pageFormats
[
key
];
return
DropdownMenuItem
<
PdfPageFormat
>(
child:
Text
(
key
),
child:
Text
(
key
,
style:
TextStyle
(
color:
theme
.
accentIconTheme
.
color
)
),
value:
val
,
);
},
...
...
Please
register
or
login
to post a comment