Publish pagination
This commit is contained in:
parent
5dbc9b5044
commit
16be2e8f94
7 changed files with 32 additions and 32 deletions
packages/paginate
|
@ -1,5 +1,9 @@
|
||||||
# 3.0.0
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.0
|
||||||
|
|
||||||
* Migrated to support Dart SDK 2.12.x NNBD
|
* Migrated to support Dart SDK 2.12.x NNBD
|
||||||
|
|
||||||
# 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
* Dart2 + Angel2 update.
|
* Dart2 + Angel2 update.
|
|
@ -1,19 +1,24 @@
|
||||||
# paginate
|
# Paginate
|
||||||
[](https://pub.dartlang.org/packages/angel_paginate)
|
|
||||||
[](https://travis-ci.org/angel-dart/paginate)
|
|
||||||
|
|
||||||
Platform-agnostic pagination library, with custom support for the
|
[](https://pub.dartlang.org/packages/angel3_paginate)
|
||||||
[Angel framework](https://github.com/angel-dart/angel).
|
[](https://dart.dev/null-safety)
|
||||||
|
[](https://gitter.im/angel_dart/discussion)
|
||||||
|
|
||||||
|
[](https://github.com/dukefirehawk/angel/tree/angel3/packages/paginate/LICENSE)
|
||||||
|
|
||||||
|
Platform-agnostic pagination library, with custom support for the [Angel3 framework](https://github.com/dukefirehawk/angel).
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
# Installation
|
|
||||||
In your `pubspec.yaml` file:
|
In your `pubspec.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
angel_paginate: ^2.0.0
|
angel3_paginate: ^3.0.0
|
||||||
```
|
```
|
||||||
|
|
||||||
# Usage
|
## Usage
|
||||||
|
|
||||||
This library exports a `Paginator<T>`, which can be used to efficiently produce
|
This library exports a `Paginator<T>`, which can be used to efficiently produce
|
||||||
instances of `PaginationResult<T>`. Pagination results, when serialized to JSON, look like
|
instances of `PaginationResult<T>`. Pagination results, when serialized to JSON, look like
|
||||||
this:
|
this:
|
||||||
|
@ -37,9 +42,9 @@ serialized via their `toJson()` method.
|
||||||
To create a paginator:
|
To create a paginator:
|
||||||
|
|
||||||
```dart
|
```dart
|
||||||
import 'package:angel_paginate/angel_paginate.dart';
|
import 'package:angel3_paginate/angel3_paginate.dart';
|
||||||
|
|
||||||
main() {
|
void main() {
|
||||||
var p = new Paginator(iterable);
|
var p = new Paginator(iterable);
|
||||||
|
|
||||||
// Get the current page (default: page 1)
|
// Get the current page (default: page 1)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import 'package:angel_paginate/angel_paginate.dart';
|
import 'package:angel3_paginate/angel3_paginate.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
var iterable = [1, 2, 3, 4];
|
var iterable = [1, 2, 3, 4];
|
||||||
|
|
|
@ -1,22 +1,13 @@
|
||||||
name: angel_paginate
|
name: angel3_paginate
|
||||||
version: 3.0.0
|
version: 3.0.0
|
||||||
description: Platform-agnostic pagination library, with custom support for the Angel framework.
|
description: Platform-agnostic pagination library, with custom support for the Angel3 framework.
|
||||||
homepage: https://github.com/angel-dart/paginate
|
homepage: https://github.com/dukefirehawk/angel/tree/angel3/packages/paginate
|
||||||
publish_to: none
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.12.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
angel_framework:
|
angel3_framework: ^4.0.0
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: sdk-2.12.x_nnbd
|
|
||||||
path: packages/framework
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel_test:
|
angel3_test: ^4.0.0
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: sdk-2.12.x_nnbd
|
|
||||||
path: packages/test
|
|
||||||
logging: ^1.0.1
|
logging: ^1.0.1
|
||||||
test: ^1.17.8
|
test: ^1.17.8
|
||||||
pedantic: ^1.11.1
|
pedantic: ^1.11.1
|
|
@ -1,7 +1,7 @@
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'package:angel_framework/angel_framework.dart';
|
import 'package:angel3_framework/angel3_framework.dart';
|
||||||
import 'package:angel_paginate/angel_paginate.dart';
|
import 'package:angel3_paginate/angel3_paginate.dart';
|
||||||
import 'package:angel_test/angel_test.dart';
|
import 'package:angel3_test/angel3_test.dart';
|
||||||
import 'package:logging/logging.dart';
|
import 'package:logging/logging.dart';
|
||||||
import 'package:test/test.dart';
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import 'package:angel_paginate/angel_paginate.dart';
|
import 'package:angel3_paginate/angel3_paginate.dart';
|
||||||
import 'package:test/test.dart';
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
// Count-down from 100, then 101 at the end...
|
// Count-down from 100, then 101 at the end...
|
||||||
|
|
Loading…
Reference in a new issue