File tree Expand file tree Collapse file tree 6 files changed +24
-34
lines changed Expand file tree Collapse file tree 6 files changed +24
-34
lines changed Original file line number Diff line number Diff line change
1
+ # 0.2.0
2
+
3
+ - BREAKING: change in Apple authentication method
4
+ - BREAKING: change in the way buttons are customized through ` AuthConfig `
5
+ - feat: additional sign-in providers added - Github, Twitter and Apple (iOS, Android and Web)
6
+ - docs: various documentation updates
7
+
1
8
# 0.1.3
2
9
3
10
- feat: add functionality to customize notification messages
Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ Pre-lit Firebase authentication. It provides a set of convenient utilities and w
10
10
## Features
11
11
12
12
- ** Multiple platform support**
13
- - Works on mobile and web. No changes needed
13
+ - Works on mobile (Android/iOS) and web. No changes needed
14
14
- Windows, macOS and Linux to be added in the future
15
15
- ** Multiple authentication providers**
16
- - Package supported: Google and Apple
17
- - Please see [ Authentication Providers] ( #authentication-providers ) for other sign-in providers
16
+ - Package supported: Google, Apple, Twitter and Github
17
+ - Please see [ Authentication Providers] ( #authentication-providers ) for additional information
18
18
- ** Services and state managed for you**
19
19
- Easily interact with Firebase from anywhere in your app
20
20
- Monitor the auth state and react to changes
21
21
- ** Error handling and error messages**
22
22
- Built in error handling that will display friendly in-app error messages
23
- - Error/Success dialogs will be customizable in future versions
23
+ - Error/Success dialogs can be customized
24
24
- ** Highly customizable**
25
- - Either use the standard sign-in widgets, or easily create your own.
25
+ - Either use the standard sign-in widgets, or create your own.
26
26
27
27
## Getting started
28
28
Original file line number Diff line number Diff line change @@ -146,20 +146,13 @@ packages:
146
146
description: flutter
147
147
source: sdk
148
148
version: "0.0.0"
149
- flutter_auth_buttons:
150
- dependency: transitive
151
- description:
152
- name: flutter_auth_buttons
153
- url: "https://pub.dartlang.org"
154
- source: hosted
155
- version: "0.8.0"
156
149
flutter_state_notifier:
157
150
dependency: transitive
158
151
description:
159
152
name: flutter_state_notifier
160
153
url: "https://pub.dartlang.org"
161
154
source: hosted
162
- version: "0.4.2 "
155
+ version: "0.6.1 "
163
156
flutter_test:
164
157
dependency: "direct dev"
165
158
description: flutter
@@ -176,7 +169,7 @@ packages:
176
169
name: freezed_annotation
177
170
url: "https://pub.dartlang.org"
178
171
source: hosted
179
- version: "0.11.0"
172
+ version: "0.11.0+1 "
180
173
google_sign_in:
181
174
dependency: transitive
182
175
description:
@@ -232,7 +225,7 @@ packages:
232
225
path: ".."
233
226
relative: true
234
227
source: path
235
- version: "0.1.3 "
228
+ version: "0.2.0 "
236
229
matcher:
237
230
dependency: transitive
238
231
description:
@@ -314,7 +307,7 @@ packages:
314
307
name: state_notifier
315
308
url: "https://pub.dartlang.org"
316
309
source: hosted
317
- version: "0.5 .0"
310
+ version: "0.6 .0"
318
311
stream_channel:
319
312
dependency: transitive
320
313
description:
Original file line number Diff line number Diff line change @@ -265,20 +265,13 @@ packages:
265
265
description: flutter
266
266
source: sdk
267
267
version: "0.0.0"
268
- flutter_auth_buttons:
269
- dependency: "direct main"
270
- description:
271
- name: flutter_auth_buttons
272
- url: "https://pub.dartlang.org"
273
- source: hosted
274
- version: "0.8.0"
275
268
flutter_state_notifier:
276
269
dependency: "direct main"
277
270
description:
278
271
name: flutter_state_notifier
279
272
url: "https://pub.dartlang.org"
280
273
source: hosted
281
- version: "0.4.2 "
274
+ version: "0.6.1 "
282
275
flutter_test:
283
276
dependency: "direct dev"
284
277
description: flutter
@@ -302,7 +295,7 @@ packages:
302
295
name: freezed_annotation
303
296
url: "https://pub.dartlang.org"
304
297
source: hosted
305
- version: "0.11.0"
298
+ version: "0.11.0+1 "
306
299
glob:
307
300
dependency: transitive
308
301
description:
@@ -552,7 +545,7 @@ packages:
552
545
name: state_notifier
553
546
url: "https://pub.dartlang.org"
554
547
source: hosted
555
- version: "0.5 .0"
548
+ version: "0.6 .0"
556
549
stream_channel:
557
550
dependency: transitive
558
551
description:
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: Pre-lit Firebase Authentication. Drop in and add Firebase Auth in j
3
3
repository : https://github.com/funwithflutter/lit_firebase_auth
4
4
homepage : https://github.com/funwithflutter/lit_firebase_auth
5
5
6
- version : 0.1.3
6
+ version : 0.2.0
7
7
8
8
environment :
9
9
sdk : " >=2.7.0 <3.0.0"
@@ -17,16 +17,15 @@ dependencies:
17
17
google_sign_in : ^4.5.1
18
18
firebase_auth_oauth : ^0.1.1+1
19
19
# annotation
20
- meta : ^1.1.8
21
- freezed_annotation : ^0.11.0
20
+ meta : ^1.2.2
21
+ freezed_annotation : ^0.11.0+1
22
22
# state
23
23
dartz : ^0.9.1
24
24
provider : ^4.2.0
25
- state_notifier : ^0.5 .0
26
- flutter_state_notifier : ^0.4.2
25
+ state_notifier : ^0.6 .0
26
+ flutter_state_notifier : ^0.6.1
27
27
# ui
28
28
flushbar : ^1.10.4
29
- flutter_auth_buttons : ^0.8.0
30
29
31
30
dev_dependencies :
32
31
flutter_test :
You can’t perform that action at this time.
0 commit comments