Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter / Dart and AWS SDK [closed]

I am thinking of writing a mobile app in Flutter (which uses dart). However I heavily use AWS and not being able to use their SDK would be troublesome.

Is there any good way to make use of it? As far as I know there is not a Dart version of the SDK. I don't know if it's possible to interrop to other language's libs in Dart or something?

Is my best bet to use the REST apis maybe?

like image 599
KTrum Avatar asked Apr 02 '18 21:04

KTrum


3 Answers

AWS announced a developer preview of AWS Amplify Flutter. It's not production-ready yet and it only contains auth, storage, and analytics for now. Check it out.

https://aws.amazon.com/blogs/mobile/announcing-aws-amplify-flutter-developer-preview/

like image 98
heisenberg91 Avatar answered Nov 08 '22 20:11

heisenberg91


You probably can use a MethodChannel and write platform specific code (Android) using AWS SDKs.

Refer to Platform Channels

like image 25
iriteshp Avatar answered Nov 08 '22 18:11

iriteshp


There is no official support for Flutter from AWS yet (March 2019)

BUT there is a community plugin that works perfectly fine on IOS and Android with Cognito and Sigv4 to access all AWS services securely.

Here are the details amazon_cognito_identity_dart

like image 3
Christine Avatar answered Nov 08 '22 20:11

Christine