galleryPaginationText method

  1. @override
String galleryPaginationText({
  1. required int currentPage,
  2. required int totalPages,
})

Gallery footer pagination text

Implementation

@override
String galleryPaginationText({
  required int currentPage,
  required int totalPages,
}) =>
    '${currentPage + 1} of $totalPages';