PaginationTheme class

Theme data for customizing Pagination widget appearance.

This class defines the visual and behavioral properties that can be applied to Pagination widgets, including spacing between controls and label display preferences. These properties can be set at the theme level to provide consistent styling across the application.

Constructors

PaginationTheme.new({double? gap, bool? showLabel})
Creates a PaginationTheme.
const

Properties

gap double?
The spacing between pagination controls.
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
showLabel bool?
Whether to show the previous/next labels.
final

Methods

copyWith({ValueGetter<double?>? gap, ValueGetter<bool?>? showLabel}) PaginationTheme
Returns a copy of this theme with the given fields replaced.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override