Skip to content

Commit 5c9f0a9

Browse files
committed
Update dependencies & README.md
1 parent d6eef8b commit 5c9f0a9

File tree

3 files changed

+85
-41
lines changed

3 files changed

+85
-41
lines changed

README.md

Lines changed: 44 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,77 @@
1-
# :bird: flutter_feathersjs :bird:
1+
# :bird: flutter_feathersjs :bird
22

3+
[![pub points](https://badges.bar/flutter_feathersjs/pub%20points)](https://pub.dev/packages/flutter_feathersjs/score)
4+
[![likes](https://badges.bar/flutter_feathersjs/likes)](https://pub.dev/packages/flutter_feathersjs/score)
5+
[![popularity](https://badges.bar/flutter_feathersjs/popularity)](https://pub.dev/packages/flutter_feathersjs/score)
6+
[![GitHub Repo stars](https://img.shields.io/github/stars/dahkenangnon/flutter_feathersjs.dart?label=github%20stars)](https://github.com/dahkenangnon/flutter_feathersjs)
7+
[![pub version](https://img.shields.io/pub/v/flutter_feathersjs)](https://pub.dev/packages/flutter_feathersjs)
8+
[![GitHub last commit](https://img.shields.io/github/last-commit/dahkenangnon/flutter_feathersjs.dart)](https://github.com/dahkenangnon/flutter_feathersjs)
39

410
<p align="center">
511
<img width="460" alt="FlutterFeathersJs Icon" height="300" src="https://dahkenangnon.github.io/flutter_feathersjs.dart/assets/img/logo.png">
612
<br>
713
Communicate with your feathers js server from flutter app with unbelieved ease and make happy your customers.
814
<br><br><br>
9-
10-
</p>
1115

16+
</p>
1217

1318
`Infos: Feathers js is a node framework for real-time applications and REST APIs.`
1419

1520
<br>
1621

17-
# :warning: [PLEASE CONTRIBUTE TO THESE DISCUSSIONS FOR NEXT RELEASE OF THIS PACKAGE](https://github.com/Dahkenangnon/flutter_feathersjs.dart/discussions)
22+
## Simple to use
1823

24+
### 1. Install it
1925

26+
```yaml
27+
# Please see https://pub.dev/packages/flutter_feathersjs/install
28+
flutter_feathersjs: ^lastest
29+
```
2030
21-
## Documentation
31+
### 2. Import it
2232
23-
Documentation is now available from: [https://dahkenangnon.github.io/flutter_feathersjs.dart/](https://dahkenangnon.github.io/flutter_feathersjs.dart/)
33+
```dart
34+
// Import it
35+
import 'package:flutter_feathersjs/flutter_feathersjs.dart';
2436

25-
## Tutorial
37+
```
2638

27-
Coming tutorial at: [https://dah-kenangnon.com/](https://dah-kenangnon.com)
39+
### 3. Initialize it
2840

41+
```dart
2942
3043
31-
## Deployment
44+
//your api baseUrl
45+
const BASE_URL = "https://flutter-feathersjs.herokuapp.com";
3246
33-
This package can be used in production app.
47+
// Init it globally across your app, maybe with get_it or something like that
48+
FlutterFeathersjs flutterFeathersjs = FlutterFeathersjs()
49+
..init(baseUrl: BASE_URL);
3450
51+
```
3552

53+
**You're ready to go: 3, 2, 1 :rocket:** Checkout the [doc](https://dahkenangnon.github.io/flutter_feathersjs.dart/) for more info.
3654

37-
## Support
55+
## Notes
3856

39-
Please email to dah.kenangnon@gmail.com if you have any questions or comments or business support.
57+
**:green_square: This package can be used in prod env from version** **V3.0.0** and up :rocket:.
4058

59+
**:green_square: This package is tested with feathersjs v4.x**
4160

42-
## Contributing
61+
**:green_square: Great features will be added soonly ([Learn more here](https://github.com/Dahkenangnon/flutter_feathersjs.dart/issues/19)). These feature will introduce incompatibilities with previous versions.**
4362

44-
Please feel free to contribute to this project by opening an issue or creating a pull request.
63+
:green_square: Null safety supported from version V4.0.2.
64+
65+
:green_square: See pubspec.yaml for more infos.
4566

67+
## Documentation
4668

47-
## Project status
69+
Check it out at: [https://dahkenangnon.github.io/flutter_feathersjs.dart/](https://dahkenangnon.github.io/flutter_feathersjs.dart/)
4870

49-
[![pub points](https://badges.bar/flutter_feathersjs/pub%20points)](https://pub.dev/packages/flutter_feathersjs/score)
50-
[![likes](https://badges.bar/flutter_feathersjs/likes)](https://pub.dev/packages/flutter_feathersjs/score)
51-
[![popularity](https://badges.bar/flutter_feathersjs/popularity)](https://pub.dev/packages/flutter_feathersjs/score)
52-
[![GitHub Repo stars](https://img.shields.io/github/stars/dahkenangnon/flutter_feathersjs.dart?label=github%20stars)](https://github.com/dahkenangnon/flutter_feathersjs)
53-
[![pub version](https://img.shields.io/pub/v/flutter_feathersjs)](https://pub.dev/packages/flutter_feathersjs)
54-
[![GitHub last commit](https://img.shields.io/github/last-commit/dahkenangnon/flutter_feathersjs.dart)](https://github.com/dahkenangnon/flutter_feathersjs)
71+
## Support
72+
73+
Please email to **dah.kenangnon (at) gmail (dot) com** if you have any questions or comments or business support.
74+
75+
## Contributing
76+
77+
Please feel free to contribute to this project by opening an issue or creating a pull request.

pubspec.lock

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ packages:
4242
name: collection
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.15.0"
45+
version: "1.16.0"
4646
dio:
4747
dependency: "direct main"
4848
description:
4949
name: dio
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "4.0.0"
52+
version: "4.0.6"
5353
event_bus:
5454
dependency: "direct main"
5555
description:
@@ -63,7 +63,7 @@ packages:
6363
name: fake_async
6464
url: "https://pub.dartlang.org"
6565
source: hosted
66-
version: "1.2.0"
66+
version: "1.3.0"
6767
ffi:
6868
dependency: transitive
6969
description:
@@ -106,7 +106,7 @@ packages:
106106
name: js
107107
url: "https://pub.dartlang.org"
108108
source: hosted
109-
version: "0.6.3"
109+
version: "0.6.4"
110110
logging:
111111
dependency: transitive
112112
description:
@@ -121,6 +121,13 @@ packages:
121121
url: "https://pub.dartlang.org"
122122
source: hosted
123123
version: "0.12.11"
124+
material_color_utilities:
125+
dependency: transitive
126+
description:
127+
name: material_color_utilities
128+
url: "https://pub.dartlang.org"
129+
source: hosted
130+
version: "0.1.4"
124131
meta:
125132
dependency: transitive
126133
description:
@@ -134,7 +141,7 @@ packages:
134141
name: path
135142
url: "https://pub.dartlang.org"
136143
source: hosted
137-
version: "1.8.0"
144+
version: "1.8.1"
138145
path_provider_linux:
139146
dependency: transitive
140147
description:
@@ -183,14 +190,28 @@ packages:
183190
name: shared_preferences
184191
url: "https://pub.dartlang.org"
185192
source: hosted
186-
version: "2.0.6"
193+
version: "2.0.15"
194+
shared_preferences_android:
195+
dependency: transitive
196+
description:
197+
name: shared_preferences_android
198+
url: "https://pub.dartlang.org"
199+
source: hosted
200+
version: "2.0.12"
201+
shared_preferences_ios:
202+
dependency: transitive
203+
description:
204+
name: shared_preferences_ios
205+
url: "https://pub.dartlang.org"
206+
source: hosted
207+
version: "2.1.1"
187208
shared_preferences_linux:
188209
dependency: transitive
189210
description:
190211
name: shared_preferences_linux
191212
url: "https://pub.dartlang.org"
192213
source: hosted
193-
version: "2.0.0"
214+
version: "2.1.1"
194215
shared_preferences_macos:
195216
dependency: transitive
196217
description:
@@ -218,7 +239,7 @@ packages:
218239
name: shared_preferences_windows
219240
url: "https://pub.dartlang.org"
220241
source: hosted
221-
version: "2.0.0"
242+
version: "2.1.1"
222243
sky_engine:
223244
dependency: transitive
224245
description: flutter
@@ -230,21 +251,21 @@ packages:
230251
name: socket_io_client
231252
url: "https://pub.dartlang.org"
232253
source: hosted
233-
version: "1.0.1"
254+
version: "2.0.0"
234255
socket_io_common:
235256
dependency: transitive
236257
description:
237258
name: socket_io_common
238259
url: "https://pub.dartlang.org"
239260
source: hosted
240-
version: "1.0.1"
261+
version: "2.0.0"
241262
source_span:
242263
dependency: transitive
243264
description:
244265
name: source_span
245266
url: "https://pub.dartlang.org"
246267
source: hosted
247-
version: "1.8.1"
268+
version: "1.8.2"
248269
stack_trace:
249270
dependency: transitive
250271
description:
@@ -279,7 +300,7 @@ packages:
279300
name: test_api
280301
url: "https://pub.dartlang.org"
281302
source: hosted
282-
version: "0.4.3"
303+
version: "0.4.9"
283304
typed_data:
284305
dependency: transitive
285306
description:
@@ -293,7 +314,7 @@ packages:
293314
name: vector_math
294315
url: "https://pub.dartlang.org"
295316
source: hosted
296-
version: "2.1.1"
317+
version: "2.1.2"
297318
win32:
298319
dependency: transitive
299320
description:
@@ -309,5 +330,5 @@ packages:
309330
source: hosted
310331
version: "0.2.0"
311332
sdks:
312-
dart: ">=2.14.0 <3.0.0"
313-
flutter: ">=1.20.0"
333+
dart: ">=2.17.0-0 <3.0.0"
334+
flutter: ">=2.8.0"

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
name: flutter_feathersjs
22
description: Communicate with your feathers js server from flutter app with unbelieved ease and make happy your customers.
3-
version: 4.0.4+4
3+
version: 4.0.5
44
homepage: https://github.com/Dahkenangnon/flutter_feathersjs.dart
55
repository: https://github.com/Dahkenangnon/flutter_feathersjs.dart
66
documentation: https://dahkenangnon.github.io/flutter_feathersjs.dart/
77
issue_tracker: https://github.com/Dahkenangnon/flutter_feathersjs.dart/issues
88

99

1010
environment:
11-
sdk: '>=2.12.0 <3.0.0'
11+
sdk: '>=2.12.1 <3.0.0'
1212

1313
dependencies:
1414
flutter:
1515
sdk: flutter
1616

17-
socket_io_client: ^1.0.1
17+
socket_io_client: ^2.0.0
1818

19-
dio: ^4.0.0
19+
dio: ^4.0.6
2020

21-
shared_preferences: ^2.0.6
21+
shared_preferences: ^2.0.15
2222

2323
event_bus: ^2.0.0
2424

0 commit comments

Comments
 (0)