I get a black screen when attempting to sign in via sso in my flutter app
I am calling the authorize method of the flutter_appAuth package on android. Here is what that method looks like: final result = await FlutterAppAuth().authorize( AuthorizationRequest( SSOConstants.clientId, SSOConstants.redirectUri, serviceConfiguration: AuthorizationServiceConfiguration( authorizationEndpoint: SSOConstants.authorizationEndpoint, tokenEndpoint: SSOConstants.tokenEndpoint, ), scopes: SSOConstants.scopes.split(' '), ), ); After…