Parse-SDK-Flutter
Parse-SDK-Flutter copied to clipboard
ParseUser.enableAutomaticUser();
New Feature / Enhancement Checklist
- [ X] I am not disclosing a vulnerability.
- [ X] I am not just asking a question.
- [ X] I have searched through existing issues.
Current Limitation
My users cannot use my app without making an account and I want to be able to let them use the app without accounts and only make an account when they want to use the actual marketplace.
Feature / Enhancement Description
I want to be able to enable automatic user and then be able to check if the user is automatic or not.
Example Use Case
- New user opens app 2. Gets navigated to homescreen 3. To access any of the additional features must create an account by pressing on a button in the appbar that navigates them to a signup page.
Alternatives / Workarounds
I do not see any workarounds
3rd Party References
The android sdk has had this feature for a long time.
When starting the app, you check if there is any user logged in. If none exist, you can create an anonymous user.
final parseResponse = await ParseUser(null, null, null).loginAnonymous();