Questions tagged [flutter-aws-amplify]

52 questions
1
vote
2 answers

How to check if user is confirmed(email/phone verified) in AWS Amplify for Flutter

Let's say in my application; I want to offer some parts of the features only for verified users. I am confused about how to check if the current user is verified or not. I checked to Amplify docs for flutter but couldn't find a proper way for it.
1
vote
0 answers

Unable to list objects from a S3 Bucket using AWS Amplify (Flutter)

I am trying to list all the items inside an S3 storage bucket. I have made my bucket public and my storage type is also set to guest but still when I run the Amplify.Storage.list() method it throws an access denied error (403) Here's the…
1
vote
1 answer

Flutter DropDownButton value not changing after selecting a new value

I have been trying to make an external UI that a user can use to make certain changes to a database(dynamodb) in the cloud. When I select a new value, I want it to show the change that the user wants to make, without actually changing the database.…
1
vote
0 answers

Platform Exception when trying to signup

I am trying to sign up a user using a simple code where I have hardcoded the email and password as well. the code looks as following: Future _Signup(BuildContext context) async { try { await Amplify.Auth.signUp( …
1
vote
1 answer

What is the equivalent for Auth.updateUserAttributes in amplify_auth_cognito

Link 1. What is the equivalent for const user = await Auth.currentAuthenticatedUser(); const result = await Auth.updateUserAttributes(user, { 'custom:favorite_flavor': 'Strawberry' }); in Flutter amplify_core: '<1.0.0' amplify_auth_cognito:…
1
vote
1 answer

How to use amplify-flutter without cli

Our client provided required Cognito User Pool id and related tokens but not giving the aws credentials so is there any possibility to setup aws amplify official flutter library with out using cli?
Midhilaj
  • 4,905
  • 9
  • 45
  • 88
0
votes
0 answers

How can I pop login page when user click on AppBar button in Flutter using Amplify Authenticator UI library?

I'm writing a Flutter app and utilizing the following packages: go_router Amplify authenticator UI library: Amplify UI Authenticator My objective is to display the typical profile image in the AppBar along with a dropdown menu (eventually,…
Guiu Mateu
  • 11
  • 3
0
votes
0 answers

How to add an existing API to flutter amplify for different environments

I'm using Amplify for auth but have my own existing REST API. I also have different deployments of this API for my different environments local, dev, production etc. The amplify docs say that to do so one needs to modify the…
0
votes
0 answers

How can I change the user-pool my Amplify Auth component is using?

I am working on a flutter project to which I-ve added AWS as backend. I deleted the user pool my auth component was using, so now it is pointing to a user pool that does no longer exist, causing every amplify push to fail with the following…
0
votes
1 answer

How does one debug or query the local datastore in flutter

I am using aws-amplify and aws-datastore plugins in my Flutter ios app as the backend is AWS. I would like to see the values of the Models in the local datastore. I don't want to query the datastore in code. I actually want to see the value in the…
Vishal Khialani
  • 2,557
  • 6
  • 38
  • 49
0
votes
0 answers

Amplify DataStore Sync Issue when creating the entries through AppSync

I am creating the Flutter app using AWS Amplify. I have created a DataModel and called the observeQuery() function in my code to look for any changes in the Database. When I create an entry through my Flutter app that entry is reflected in DynamoDB…
0
votes
0 answers

I am trying to implement a social oauth for a flutter app, but the screen gets stuck after account selection in both google and facebook auth

I am trying to implement a social oauth for a flutter app, but the screen gets stuck after account selection in both google and facebook authentication. This was working until a few weeks ago, but suddenly stopped working last week, no one has made…
0
votes
1 answer

Update single amplify model field with custom GraphQL mutation in Flutter

I am trying to update single field in Amplify model using GraphQL in Flutter. As far as I know Amplify.API.mutate and Amplify.DataStore.save can only update entire models. In the doc in subset-of-data section there is an example how to run custom…
Chris
  • 839
  • 1
  • 12
  • 30
0
votes
1 answer

Flutter amplify - The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method

I was trying to install Amplify libraries in my Flutter project in the process I am trying to Provision the backend with Amplify CLI. I am following official docs to configure this. on the 3rd step while giving amplify init command on the terminal…
0
votes
0 answers

Sinchronization in Flutter between multiple isolates

I am learning Flutter and trying to make advanced todo application. I want to sync todos with a cloud using aws amplify. The problem is that I need the sync to work not only from isolate of main app but also from isolate spawned by WorkManager. This…
alehro
  • 2,198
  • 2
  • 25
  • 41