David PHAM-VAN

Fix MultiPage.maxPages not checked with release builds

... ... @@ -3,6 +3,7 @@
## 3.11.2
- Add support for custom fonts in SVGs. [Tyler Denniston]
- Fix MultiPage.maxPages not checked with release builds
## 3.11.1
... ...
... ... @@ -254,11 +254,14 @@ class MultiPage extends Page {
while (_index < children.length) {
final child = children[_index];
assert(() {
// Detect too big widgets
if (sameCount++ > maxPages) {
throw TooManyPagesException(
'This widget created more than $maxPages pages. This may be an issue in the widget or the document. See https://pub.dev/documentation/pdf/latest/widgets/MultiPage-class.html');
}
return true;
}());
// Calculate available space of the current page
final freeSpace = (offsetStart == null)
... ...