File tree 3 files changed +17
-6
lines changed
3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 1
- ## 0.2.4
1
+ ## 1.0.0
2
+ * Add null safety
3
+ * Subclassing support for ` ParseObject ` and ` ParseUser `
4
+ * Fix bugs and enhancement
5
+ * Update documentation
6
+
7
+ ## 0.2.4
2
8
* Moving from personal to organization account
3
9
4
10
## 0.2.3
Original file line number Diff line number Diff line change 1
1
# Flutter Parse
2
2
[ ![ FOSSA Status] ( https://app.fossa.io/api/projects/git%2Bgithub.heygears.com%2Feyro-labs%2Fflutter_parse.svg?type=shield )] ( https://app.fossa.io/projects/git%2Bgithub.heygears.com%2Feyro-labs%2Fflutter_parse?ref=badge_shield ) [ ![ Build Status] ( https://travis-ci.org/eyro-labs/flutter_parse.svg?branch=master )] ( https://travis-ci.org/eyro-labs/flutter_parse# ) [ ![ ] ( https://img.shields.io/pub/v/flutter_parse.svg )] ( https://github.com/eyro-labs/flutter_parse ) [ ![ Coverage Status] ( https://coveralls.io/repos/github/eyro-labs/flutter_parse/badge.svg?branch=master )] ( https://coveralls.io/github/eyro-labs/flutter_parse?branch=master )
3
3
4
- Packages for managing Parse SDK using pure Dart.
4
+ Plugin for managing and accessing Parse Server for Dart and Flutter.
5
5
6
6
Features:
7
7
* ParseACL
8
+ * ParseCloud
8
9
* ParseConfig
9
10
* ParseFile
11
+ * ParseGeoPoint
12
+ * ParseLiveQuery
10
13
* ParseObject
11
14
* ParseQuery
12
15
* ParseRole
16
+ * ParseSchema
13
17
* ParseSession
14
18
* ParseUser
15
19
@@ -19,7 +23,7 @@ Add to pubspec.yaml:
19
23
20
24
``` yaml
21
25
dependencies :
22
- flutter_parse : ^0.2.4
26
+ flutter_parse : ^1.0.0
23
27
` ` `
24
28
25
29
## Import Library
@@ -35,6 +39,7 @@ void main() {
35
39
server: 'YOUR_PARSE_SERVER_URL',
36
40
applicationId: 'YOUR_PARSE_APPLICATION_ID',
37
41
clientKey: 'YOUR_PARSE_CLIENT_KEY',
42
+ localStorage: Storage("path/to/writable/data"),
38
43
);
39
44
Parse.initialize(config);
40
45
runApp(MyApp());
@@ -67,12 +72,12 @@ await user.#();
67
72
final query = ParseQuery(className: 'Beacon')
68
73
..whereEqualTo('proximityUUID', 'CB10023F-A318-3394-4199-A8730C7C1AEC')
69
74
..whereLessThanOrEqualTo('major', 10);
70
- final listObjects = await query.findAsync ();
75
+ final listObjects = await query.find ();
71
76
```
72
77
73
78
# Author
74
79
75
- Parse Dart plugin is developed by Alann Maulana . You can contact me at <kangmas.alan@gmail .com >.
80
+ Parse Dart plugin is developed by Eyro Labs . You can contact me at < maulana@cubeacon .com> .
76
81
77
82
## License
78
83
Original file line number Diff line number Diff line change 1
1
name : flutter_parse
2
2
description : Plugin for managing and accessing Parse Server for Dart VM and Flutter.
3
- version : 0.2.4
3
+ version : 1.0.0
4
4
homepage : https://github.com/eyro-labs/flutter_parse
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments