File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,7 @@ extension on OAuthProvider {
54
54
_ => Colors .black,
55
55
};
56
56
57
- String get labelText =>
58
- 'Continue with ${name [0 ].toUpperCase ()}${name .substring (1 )}' ;
57
+ String get labelText => '${name [0 ].toUpperCase ()}${name .substring (1 )}' ;
59
58
}
60
59
61
60
enum SocialButtonVariant {
Original file line number Diff line number Diff line change 1
1
import 'package:supabase_auth_ui/supabase_auth_ui.dart' ;
2
2
3
3
class SupaSocialsAuthLocalization {
4
+ final String continueWith;
4
5
final String updatePassword;
5
6
final String successSignInMessage;
6
7
final String unexpectedError;
@@ -25,6 +26,7 @@ class SupaSocialsAuthLocalization {
25
26
final Map <OAuthProvider , String > oAuthButtonLabels;
26
27
27
28
const SupaSocialsAuthLocalization ({
29
+ this .continueWith = 'Continue with' ,
28
30
this .updatePassword = 'Update Password' ,
29
31
this .successSignInMessage = 'Successfully signed in!' ,
30
32
this .unexpectedError = 'An unexpected error occurred' ,
You can’t perform that action at this time.
0 commit comments