How to use amplify in flutter?

Viewed 256

I need to use amplify in flutter.
Any idea how to do that?
I am familiar with firebase auth
If there is no option to implement the amplify in flutter, then is that possible to write code in firebase cloud function and ues it in flutter

1 Answers

Recently the team at Amplify began working on Amplify Flutter. You can check out their repo here.

It is still in developer preview, so don't expect to be using It in production applications just yet.

Currently, they support Authentication, Analytics, and Storage, and they plan on adding to this feature set in the near future.

  • Authentication is provided through Cognito.
  • Analytics is provided through Pinpoint.
  • Storage is provided through S3.

If you need help getting set up, head over to their documentation or these articles which I used to help me get up and running with some basic apps:

Related