Questions tagged [flutter-aws-amplify]
52 questions
0
votes
1 answer
How to convert Amplify.DataStore.observeQuery into stream with async* that can be used in Bloc
I'm trying to convert Amplify.DataStore.observeQuery into a stream in repository class.
The expected return type is Stream
- >.

Chris
- 839
- 1
- 12
- 30
0
votes
1 answer
Amplify query reads null fields when hasOne relationship
I have the following setup in my schema.graphql:
type TrainingInfo @model @auth(rules: [{allow: public}]) {
id: ID!
title: String!
description: String!
rating: Int
trainingInfoID: [AssigneeList] @connection(keyName: "byTrainingInfo",…

PetarA
- 51
- 1
- 3
0
votes
1 answer
Problem with setting up API connection with AWS Amplify
I am currently developing an eCommerce App in React Native Expo that utilizes AWS amplify and I am trying to connect the API and database to it.
After running 'amplify push', I get the following error message:
� An error occurred during the push…

antsmasher
- 39
- 4
0
votes
0 answers
How to return column entries of a DynamoDB table as a list?
I created a lambda function and connected it to the AWS API Gateway to get my DynamoDB table data in JSON format for the front end, I am trying to get my column entries from my DynamoDB table as a List in JSON format but what I end up getting is a…

Suyash_singh
- 43
- 2
- 5
0
votes
1 answer
Unhandled Exception: type 'String' is not a subtype of type 'List
I earlier created an API using AWS Lambda and API gateway which fetches the data from my DynamoDB table.
Here's my lambda function
const AWS = require("aws-sdk");
const documentClient = new AWS.DynamoDB.DocumentClient();
exports.handler = async…

Suyash_singh
- 43
- 2
- 5
-1
votes
1 answer
Flutter Amplify with SAML
https://docs.amplify.aws/lib/auth/signin_web_ui/q/platform/flutter#ios-platform-setup
Im trying to find out if its possible to use SAML with Flutter Amplify plugin
I only see documentation on how to do this with native iOS and Android
How would this…

Derek Hannah
- 537
- 7
- 23