File tree 2 files changed +26
-11
lines changed
2 files changed +26
-11
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,21 @@ class MyApp extends StatelessWidget {
25
25
}
26
26
}
27
27
28
+ // class Tester extends StatelessWidget {
29
+ // const Tester({Key key}) : super(key: key);
30
+
31
+ // @override
32
+ // Widget build(BuildContext context) {
33
+ // return Scaffold(
34
+ // body: RaisedButton(
35
+ // onPressed: () {
36
+ // print('test');
37
+ // },
38
+ // child: Text('helo')),
39
+ // );
40
+ // }
41
+ // }
42
+
28
43
class SplashScreen extends StatelessWidget {
29
44
const SplashScreen ({
30
45
Key key,
@@ -44,18 +59,18 @@ class SplashScreen extends StatelessWidget {
44
59
),
45
60
unauthenticated: LitAuth (
46
61
/// STANDARD
47
- config: AuthConfig .standard (
48
- title: Text (
49
- '🔥Welcome to Lit Firebase!🔥' ,
50
- textAlign: TextAlign .center,
51
- style: Theme .of (context).textTheme.headline4,
52
- ),
53
- ),
62
+ // config: AuthConfig.standard(
63
+ // title: Text(
64
+ // '🔥Welcome to Lit Firebase!🔥',
65
+ // textAlign: TextAlign.center,
66
+ // style: Theme.of(context).textTheme.headline4,
67
+ // ),
68
+ // ),
54
69
55
70
/// CUSTOM
56
- // config: AuthConfig.custom(
57
- // signIn: CustomSignInWidget(),
58
- // ),
71
+ config: AuthConfig .custom (
72
+ signIn: CustomSignInWidget (),
73
+ ),
59
74
),
60
75
),
61
76
),
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.0.3
6
+ version : 0.0.4
7
7
8
8
environment :
9
9
sdk : " >=2.7.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments