You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Merged v1.0.22
* 1. Fix return result from save method. This is important. (#208)
2. Fix unsavedChanges issue in ParseUser login and signUp method.
3. Delete useless and reduplicative decode in ParseUser. Because this is already done in handleResponse method. This also cause wrong unsaved changes.
* README.md updated from https://stackedit.io/
* README.md updated from https://stackedit.io/
* README.md updated from https://stackedit.io/
* README.md updated from https://stackedit.io/
* README.md updated from https://stackedit.io/
* Update README.md
* add distinct
Hi, this is a Flutter plugin that allows communication with a Parse Server, (https://parseplatform.org) either hosted on your own server or another, like (http://Back4App.com).
@@ -23,31 +21,32 @@ or clone this repository and add to your project. As this is an early developmen
23
21
Once you have the library added to your project, upon first call to your app (Similar to what your application class would be) add the following...
24
22
25
23
```dart
26
-
await Parse().initialize(
27
-
ApplicationConstants.keyApplicationId,
28
-
ApplicationConstants.keyParseServerUrl);
24
+
await Parse().initialize(
25
+
keyApplicationId,
26
+
keyParseServerUrl);
29
27
```
30
-
if you want to use secure storage also that's allow using sdk on desktop application
28
+
29
+
If you want to use secure storage or use the Flutter web/desktop SDK, please change to the below instance of CoreStorage as it has no dependencies on Flutter.
0 commit comments