Skip to content

Commit

Permalink
Docs correction
Browse files Browse the repository at this point in the history
  • Loading branch information
WieFel committed Sep 29, 2023
1 parent d411634 commit 65244fc
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions lib/src/ui/number_paginator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,19 @@ class NumberPaginator extends StatefulWidget {
/// Defaults to `true`.
final bool showNextButton;

/// Content of the "previous" button which is automatically displayed and goes
/// one page back.
/// Content of the "previous" button which when pressed goes one page back.
///
/// Defaults to:
/// ```dart
/// const FittedBox(
/// child: Icon(Icons.chevron_left),
/// )
/// Icon(Icons.chevron_left),
/// ```
final Widget prevButtonContent;

/// Content of the "next" button which is automatically displayed and goes
/// one page forward.
/// Content of the "next" button which when pressed goes one page forward.
///
/// Defaults to:
/// ```dart
/// const FittedBox(
/// child: Icon(Icons.chevron_right),
/// )
/// Icon(Icons.chevron_right),
/// ```
final Widget nextButtonContent;

Expand Down

0 comments on commit 65244fc

Please sign in to comment.