Skip to content

Commit 6cb370b

Browse files
authored
Merge branch 'master' into master
2 parents 5f3d01d + 908cd63 commit 6cb370b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/static-analysis.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ on:
33
push:
44
pull_request:
55

6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
610
jobs:
711
static-analysis:
812
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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';
103102
import 'package:firebase_ui_oauth_oidc/firebase_ui_oauth_oidc.dart';
104103
import '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
);

0 commit comments

Comments
 (0)