@@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
2
2
3
3
import '../core/auth_config.dart' ;
4
4
import '../core/extensions.dart' ;
5
- import 'oauth_logos .dart' ;
5
+ import 'lit_auth_icons .dart' ;
6
6
7
7
const double defaultButtonHeight = 40.0 ;
8
8
const FontWeight defaultFontWeight = FontWeight .w500;
@@ -44,7 +44,7 @@ class SignInWithGoogleButton extends StatelessWidget {
44
44
color: Colors .white,
45
45
),
46
46
child: Center (
47
- child: OAuthIcon .google (),
47
+ child: LitAuthIcon .google (),
48
48
),
49
49
),
50
50
child: label ?? const _ContinueWithLabel (label: defaultLabel),
@@ -63,7 +63,7 @@ class SignInWithGoogleButton extends StatelessWidget {
63
63
),
64
64
icon: _IconWrapper (
65
65
buttonHeight: defaultButtonHeight,
66
- child: OAuthIcon .google (),
66
+ child: LitAuthIcon .google (),
67
67
),
68
68
child: label ?? const _ContinueWithLabel (label: defaultLabel),
69
69
),
@@ -80,7 +80,7 @@ class SignInWithGoogleButton extends StatelessWidget {
80
80
.copyWith (height: defaultButtonHeight),
81
81
icon: _IconWrapper (
82
82
buttonHeight: defaultButtonHeight,
83
- child: OAuthIcon .google (),
83
+ child: LitAuthIcon .google (),
84
84
),
85
85
child: const _ContinueWithLabel (label: defaultLabel),
86
86
),
@@ -121,7 +121,7 @@ class SignInWithAppleButton extends StatelessWidget {
121
121
child: label ?? const _ContinueWithLabel (label: defaultLabel),
122
122
icon: _IconWrapper (
123
123
buttonHeight: defaultButtonHeight,
124
- child: OAuthIcon .appleWhite (),
124
+ child: LitAuthIcon .appleWhite (),
125
125
),
126
126
),
127
127
);
@@ -140,7 +140,7 @@ class SignInWithAppleButton extends StatelessWidget {
140
140
child: label ?? const _ContinueWithLabel (label: defaultLabel),
141
141
icon: _IconWrapper (
142
142
buttonHeight: defaultButtonHeight,
143
- child: OAuthIcon .appleBlack (),
143
+ child: LitAuthIcon .appleBlack (),
144
144
),
145
145
),
146
146
);
@@ -156,7 +156,7 @@ class SignInWithAppleButton extends StatelessWidget {
156
156
.copyWith (height: defaultButtonHeight),
157
157
icon: _IconWrapper (
158
158
buttonHeight: defaultButtonHeight,
159
- child: OAuthIcon .appleBlack (),
159
+ child: LitAuthIcon .appleBlack (),
160
160
),
161
161
child: const _ContinueWithLabel (label: defaultLabel),
162
162
),
@@ -194,7 +194,7 @@ class SignInWithGithubButton extends StatelessWidget {
194
194
.copyWith (height: defaultButtonHeight),
195
195
icon: _IconWrapper (
196
196
buttonHeight: defaultButtonHeight,
197
- child: OAuthIcon .github (),
197
+ child: LitAuthIcon .github (),
198
198
),
199
199
child: const _ContinueWithLabel (label: defaultLabel),
200
200
),
@@ -233,7 +233,7 @@ class SignInWithTwitterButton extends StatelessWidget {
233
233
.copyWith (height: defaultButtonHeight),
234
234
icon: _IconWrapper (
235
235
buttonHeight: defaultButtonHeight,
236
- child: OAuthIcon .twitter (),
236
+ child: LitAuthIcon .twitter (),
237
237
),
238
238
child: const _ContinueWithLabel (label: defaultLabel),
239
239
),
0 commit comments