File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 33 push :
44 pull_request :
55
6+ concurrency :
7+ group : ${{ github.workflow }}-${{ github.ref }}
8+ cancel-in-progress : true
9+
610jobs :
711 static-analysis :
812 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ Also there is a standalone version of the `OidcSignInButton`
9999
100100<!-- embedme readme/usage_3.dart -->
101101``` dart
102- import 'package:firebase_auth/firebase_auth.dart';
103102import 'package:firebase_ui_oauth_oidc/firebase_ui_oauth_oidc.dart';
104103import 'package:flutter/material.dart';
105104
@@ -114,7 +113,7 @@ class MyScreen extends StatelessWidget {
114113 providerId: 'oidc.example',
115114 style: const ExampleButtonStyle(),
116115 loadingIndicator: const CircularProgressIndicator(),
117- onSignedIn: (UserCredential credential) {
116+ onSignedIn: (credential) {
118117 // perform navigation.
119118 },
120119 );
You can’t perform that action at this time.
0 commit comments