bartcone-fulfilld

Results 5 comments of bartcone-fulfilld

@vinhhoangdo do you happen to have `appAuthRedirectScheme` defined with the same scheme name in `manifestPlaceholders` (`build.gradle`)? If not, what does your `AndroidManifest.xml` look like? Do you have two or more...

@vinhhoangdo you have two `` in that manifest file. Make them different and then try (by different I mean change the `myScheme` part).

+1 to this -- I went down a rabbit hole because of this today. I'll see what I can throw together in the next couple of weeks.

For reference: - https://github.com/zino-hofmann/graphql-flutter/blob/main/packages/graphql/lib/src/core/query_manager.dart#L255 - https://github.com/zino-hofmann/graphql-flutter/blob/main/packages/graphql/lib/src/core/query_manager.dart#L277

Old thread, but you can use a `ShaderMask` (https://api.flutter.dev/flutter/widgets/ShaderMask-class.html) to achieve all different kinds of variations. Example below creates the gradient along the entire timeline. ``` ShaderMask( blendMode: BlendMode.srcIn, shaderCallback:...