Andy Stanberry

Results 11 comments of Andy Stanberry

This happens when you're `layout_width` is `wrap_content`. Changing it to `match_parent` fixed it for me. It has to know how big to be able to draw it. And for some...

The file you linked to is a test fixture. Events are picked up based on which type of managers you use. For example, if you're using dynamodb, when something is...

This is no polling. Dynamo streams are serverless, see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.Lambda.html A lambda is invoked when something is added to a dynamo table.

That all happens in the AWS black box, this library doesn't write the code for it.

We forked it and are using the patch mentioned above.

The problem goes away in v5 only because we can use a custom webview solution like `react-native-inappbrowser-reborn` and as far as I can tell, the no https restriction was added...

@elorzafe The nature of our auth setup does not allow for this. We need the ability to use different redirect urls in different scenarios on the react-native experience just like...

@josefaidt Our authentication situation involes an upstream OIDC connection that then provides the SSO experience. ```Cognito --OIDC--> Upstream IdP --SAML/OIDC--> IdP providing SSO experience ``` I have not been able...

Instead of using the plugin, you can use ```js { output: { chunkFormat: false } } ```

Has anyone figured out a way to use these directives with apollo server 3?