Reputation: 31
I'm using firebase auth service in my mobile App. Now I'm trying to create a web page using angular-dart. Unfortunately I could not find any guide for email-password firebase authentication sample for angular-dart, like angularfire2 (https://github.com/angular/angularfire2/tree/master/docs). Please help me.
Upvotes: 2
Views: 500
Reputation: 876
Some time has passed, there are now good examples. FirebaseExtended GitHub Repo has examples for everything Firebase.
The auth example from the repo is here
Upvotes: 0
Reputation: 3113
There is package:angular_fire
, which is being built by Matan (an AngularDart team member). I'm not sure if it has email+password auth yet, though.
If not, you'd have to roll your own component for this. Outside AngularDart, this is how you'd do that. It should be relatively straightforward to make this into an AngularDart component.
Upvotes: 1