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
2019-05-11 15:15:08 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3cc40cee79639a6a0a905bdd63158ac310f0d573
3cc40cee
1 parent
4bc119d4
Add default values to ClipRRect
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
pdf/CHANGELOG.md
pdf/lib/widgets/clip.dart
pdf/CHANGELOG.md
View file @
3cc40ce
...
...
@@ -2,6 +2,7 @@
*
Fix Transform Widget alignment
*
Fix CustomPaint Widget size
*
Add DecorationImage to BoxDecoration
*
Add default values to ClipRRect
# 1.3.8
*
Add jpeg image loading function
...
...
pdf/lib/widgets/clip.dart
View file @
3cc40ce
...
...
@@ -48,9 +48,11 @@ class ClipRect extends SingleChildWidget {
class
ClipRRect
extends
SingleChildWidget
{
ClipRRect
({
Widget
child
,
this
.
horizontalRadius
,
this
.
verticalRadius
,
})
:
super
(
child:
child
);
this
.
horizontalRadius
=
0
,
this
.
verticalRadius
=
0
,
})
:
assert
(
horizontalRadius
!=
null
),
assert
(
verticalRadius
!=
null
),
super
(
child:
child
);
final
double
horizontalRadius
;
final
double
verticalRadius
;
...
...
Please
register
or
login
to post a comment