Skip to content

Commit

Permalink
dropdown pagination, docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecoomber committed Apr 12, 2024
1 parent 84336fe commit 3001bd6
Show file tree
Hide file tree
Showing 2 changed files with 209 additions and 84 deletions.
10 changes: 9 additions & 1 deletion example/lib/pages/components/pagination_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ class _PaginationExampleState extends State<PaginationExample> {
Widget build(BuildContext context) {
return ExampleScaffold(
name: PaginationExample.name,
child: ZetaPagination(pages: 10000),
child: Column(
children: [
ZetaPagination(pages: 1000),
ZetaPagination(
pages: 9,
type: ZetaPaginationType.dropdown,
),
],
),
);
}
}
Loading

0 comments on commit 3001bd6

Please sign in to comment.