Skip to content

Commit

Permalink
## 3.0.0-non-null-safety
Browse files Browse the repository at this point in the history
* non-null-safety
* Breaking change:
  Remove [TransparentMaterialPageRoute] and [TransparentMaterialPageRoute]
* Improve:
  Add [ExtendedNetworkImageProvider.printError]
  • Loading branch information
zmtzawqlp committed Mar 4, 2021
1 parent a76c6f2 commit 0d7f291
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 692 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 3.0.0-non-null-safety

* non-null-safety
* Breaking change:
Remove [TransparentMaterialPageRoute] and [TransparentMaterialPageRoute]
* Improve:
Add [ExtendedNetworkImageProvider.printError]

## 2.0.0

Expand Down
1 change: 0 additions & 1 deletion lib/extended_image.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ export 'src/gesture/extended_image_gesture_page_view.dart';
export 'src/gesture/extended_image_gesture_utils.dart';
export 'src/gesture/extended_image_slide_page.dart';
export 'src/gesture/extended_image_slide_page_handler.dart';
export 'src/gesture/extended_image_slide_page_route.dart';
export 'src/image/extended_raw_image.dart';
export 'src/image/extended_render_image.dart';
2 changes: 2 additions & 0 deletions lib/src/extended_image.dart
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class ExtendedImage extends StatefulWidget {
int cacheHeight,
this.isAntiAlias = false,
String cacheKey,
bool printError = true,
}) : assert(cacheWidth == null || cacheWidth > 0),
assert(cacheHeight == null || cacheHeight > 0),
assert(isAntiAlias != null),
Expand All @@ -129,6 +130,7 @@ class ExtendedImage extends StatefulWidget {
timeRetry: timeRetry,
timeLimit: timeLimit,
cacheKey: cacheKey,
printError: printError,
),
),
assert(constraints == null || constraints.debugAssertIsValid()),
Expand Down
Loading

0 comments on commit 0d7f291

Please sign in to comment.