isLastPage property

bool get isLastPage

Whether the parent PageView is at the last page.

Implementation

bool get isLastPage {
  if (_view.childrenDelegate.estimatedChildCount == null) return false;
  final totalPages = _view.childrenDelegate.estimatedChildCount! - 1;
  return totalPages == _view.controller.page?.round();
}