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-04-24 08:55:22 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a9fcde311f33b8959c1fefc3d0b38c31046646df
a9fcde31
1 parent
0520add8
Fix lint warnings
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
pdf/web_example/web/calendar.dart
pdf/web_example/web/main.dart
pdf/web_example/web/calendar.dart
View file @
a9fcde3
...
...
@@ -76,12 +76,12 @@ class Calendar extends StatelessWidget {
PdfColor
color
=
PdfColors
.
grey300
;
if
(
currentDay
)
{
style
=
TextStyle
(
color:
PdfColors
.
red
);
style
=
const
TextStyle
(
color:
PdfColors
.
red
);
color
=
PdfColors
.
lightBlue50
;
}
if
(!
currentMonth
)
{
style
=
TextStyle
(
color:
PdfColors
.
grey
);
style
=
const
TextStyle
(
color:
PdfColors
.
grey
);
color
=
PdfColors
.
grey100
;
}
...
...
pdf/web_example/web/main.dart
View file @
a9fcde3
...
...
@@ -37,7 +37,7 @@ Uint8List buildPdf() {
child:
FittedBox
(
child:
Text
(
'Hello!'
,
style:
TextStyle
(
color:
PdfColors
.
blueGrey
),
style:
const
TextStyle
(
color:
PdfColors
.
blueGrey
),
),
),
);
...
...
Please
register
or
login
to post a comment