FPaginationController class
A controller that controls which page is selected.
- Inheritance
-
- Object
- FChangeNotifier
- FPaginationController
Constructors
- FPaginationController.new({required int pages, int initialPage = 0, bool showEdges = true, int siblings = 1})
- Creates a FPaginationController.
Properties
- disposed → bool
-
True if this notifier has been disposed.
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- hasListeners → bool
-
Whether any listeners are currently registered.
no setterinherited
- page ↔ int
-
The current page index.
getter/setter pair
- pages → int
-
The total number of pages in the pagination.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- showEdges → bool
-
Whether to show the first and last pages in the pagination. Defaults to
true
.final - siblingRange → (int, int)
-
The start and end pages to display around the current page.
no setter
- siblings → int
-
The number of sibling pages displayed beside the current page number. Defaults to 1.
final
Methods
-
addListener(
VoidCallback listener) → void -
Register a closure to be called when the object changes.
inherited
-
dispose(
) → void -
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
addListener will throw after the object is disposed).
inherited
-
next(
) → void - Moves to the next page if the current page is less than the total number of pages.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notifyListeners(
) → void -
Call all the registered listeners.
inherited
-
previous(
) → void - Moves to the previous page if the current page is greater than 1.
-
removeListener(
VoidCallback listener) → void -
Remove a previously registered closure from the list of closures that are
notified when the object changes.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited