File tree Expand file tree Collapse file tree 2 files changed +26
-11
lines changed Expand file tree Collapse file tree 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 {
2525 }
2626}
2727
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+
2843class SplashScreen extends StatelessWidget {
2944 const SplashScreen ({
3045 Key key,
@@ -44,18 +59,18 @@ class SplashScreen extends StatelessWidget {
4459 ),
4560 unauthenticated: LitAuth (
4661 /// 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+ // ),
5469
5570 /// CUSTOM
56- // config: AuthConfig.custom(
57- // signIn: CustomSignInWidget(),
58- // ),
71+ config: AuthConfig .custom (
72+ signIn: CustomSignInWidget (),
73+ ),
5974 ),
6075 ),
6176 ),
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
33repository : https://github.com/funwithflutter/lit_firebase_auth
44homepage : https://github.com/funwithflutter/lit_firebase_auth
55
6- version : 0.0.3
6+ version : 0.0.4
77
88environment :
99 sdk : " >=2.7.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments