Parse-SDK-Flutter icon indicating copy to clipboard operation
Parse-SDK-Flutter copied to clipboard

ParseUser.enableAutomaticUser();

Open mtgnoah opened this issue 3 years ago • 1 comments

New Feature / Enhancement Checklist

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

  1. 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.

mtgnoah avatar Oct 13 '21 20:10 mtgnoah

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();

RodrigoSMarques avatar Oct 20 '21 12:10 RodrigoSMarques