Coder
Coder

Reputation: 658

How do I do offline authentication using flutter and firebase

I have an app that requires authentication and I need to use Firebase, however, this authentication needs to be offline. I have seen someone do this with React Native, so how would I do this with Flutter?

Upvotes: 1

Views: 855

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317740

There is no offline auth with Firebase Authentication. It is absolutely required the the user be online so that their identity can be verified with the authentication provider.

Upvotes: 4

Related Questions