Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add padEnds property #500

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/photo_view_gallery.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class PhotoViewGallery extends StatefulWidget {
this.scrollDirection = Axis.horizontal,
this.customSize,
this.allowImplicitScrolling = false,
this.padEnds = true,
}) : itemCount = null,
builder = null,
super(key: key);
Expand All @@ -139,6 +140,7 @@ class PhotoViewGallery extends StatefulWidget {
this.scrollDirection = Axis.horizontal,
this.customSize,
this.allowImplicitScrolling = false,
this.padEnds = true,
}) : pageOptions = null,
assert(itemCount != null),
assert(builder != null),
Expand Down Expand Up @@ -189,6 +191,9 @@ class PhotoViewGallery extends StatefulWidget {
/// When user attempts to move it to the next element, focus will traverse to the next page in the page view.
final bool allowImplicitScrolling;

// Whether to add padding to both ends of the list. Mirror to [PageView.padEnds]
final bool padEnds;

bool get _isBuilder => builder != null;

@override
Expand Down Expand Up @@ -232,6 +237,7 @@ class _PhotoViewGalleryState extends State<PhotoViewGallery> {
scrollDirection: widget.scrollDirection,
physics: widget.scrollPhysics,
allowImplicitScrolling: widget.allowImplicitScrolling,
padEnds: widget.padEnds,
),
);
}
Expand Down