Questions tagged [flutter-aws-amplify]

52 questions
0
votes
1 answer

Amplify-Flutter for Web not working Error "Amplify has already been configured and adding plugins after configure is not supported."

The same code is working for android/ios but showing the below error after trying to run for web. "message": "Amplify has already been configured and adding plugins after configure is not supported." This is error is only showing when debugging for…
0
votes
1 answer

Unable to use the signedUrl provided by Flutter Amplify to Access S3 Bucket Images

Migrating an AWS Service from React-Native Application to New Flutter Application. I have come into trouble when it comes to getting the signed url to access images. I get the following error when trying to access them using the given url: Handshake…
0
votes
1 answer

AWS Amplify API with GraphQL access rules defined but not working

I'm using AWS Amplify API with GraphQL in my Flutter app and I have defined a GraphQL schema with the following access rules: Any user, authenticated or not, can read all UserProfiles. Only the owner can create, read, update, and delete their own…
0
votes
1 answer

Flutter - Amplify Graphql - Type "Null" is not a subtype of "String" - RESOLVED!! Explanation at the end

I'm getting an error that says `type "Null" is not a subtype of "String". I have no idea where this error is coming from. I can't understand, because It works just fine in amplify studio and it works just fine in AppSync. I'm out of options. Please…
0
votes
1 answer

Does Amazon DynamoDB Encryption Client work with Amplify DataStore?

I have a Flutter app with AWS Amplify's DataStore as backend. Is client side/in transit encryption possible for the DynamoDB DataStore is using?
0
votes
0 answers

How to enable DynamoDBEnableServerSideEncryption in Flutter App using AWS Amplify?

I need to enable DynamoDBEnableServerSideEncryption (set to true in the backend folder), but it doesn't let me edit the read-only files. How can I set the parameter to true through the console? Thanks. I have a Flutter application that uses…
0
votes
1 answer

Does AWS Amplify Datastore (GraphQL API) use HTTPS for Queries?

I was wondering if the CRUD queries are encrypted in transit. I have a flutter app that uses AWS as backend and the data sent from client server needs to be encrypted in transit.
0
votes
0 answers

How to encrypt data in transit for AWS Amplify GraphQL DataStore?

I have a Flutter application that uses AWS Amplify DataStore (API GraphQL). I need to encrypt data in transit when I create/update a model/new entry in the DataStore. How can I enable this?
0
votes
1 answer

How can I download images by url faster in AWS Amplify using Flutter?

I'm constantly getting this message in Flutter: 'Connection closed before full header was received', when calling to create a download url for an image from storage. It takes very long for the images to download, as the url needs to be regenerated,…
0
votes
0 answers

How to fetch a field of a model with AWS Amplify API & DataStore in Flutter?

How do I query for a specific field instead of the whole model using AWS Amplify's Api & DataStore in Flutter? I'm wondering if there's a similar function to Firebase's document fetching in a collection. Thanks! Instead of final user = await …
0
votes
0 answers

Upload a file to a different aws s3 bucket in flutter

In my Flutter app I use Amazon S3 to store my videos and images. I use amplify_flutter package to upload files. After following the official documentation of AWS Amplify, I created a bucket to upload videos and this bucket is refrenced in…
sm_sayedi
  • 326
  • 2
  • 17
0
votes
2 answers

How to query Amplify datastore by custom type field value(Flutter)

I'm recently writing a flutter app which I need to manipulate the data in Amplify datastore. I'm able to query data by regular data type(e.g. String), but I'm not sure how to query by an array of custom type data. Here is an example of my data…
0
votes
0 answers

Prevent user from recycling old password during password reset amplify flutter

Is there any way to prevent recycling of the old password during password reset using amplify library for flutter? Or this configuration is on the AWS console itself? Thank you!
0
votes
0 answers

AWS Amplify Flutter one to many relationship - graphql create - not working?

I am new to AWS Amplify and GraphQL API. I created data models using Amplify Studio. Here is the schema.graphql: type Language @model @auth(rules: [{allow: public}]) { id: ID! name: String fluency: String rpm: Float translatorID: ID…
0
votes
1 answer

Querying Many-To-Many Relationships in AWS Amplify

I have two models in my graphql schema and the one I am trying to query on, Sessions, has two @belongsTo directives (read on a forum this matters). I can successfully save these models and view them on the AWS AppSync Queries Tab where I can query…