Skip to content

Commit 255815d

Browse files
docs: add logo path
1 parent 3abbf32 commit 255815d

File tree

2 files changed

+26
-11
lines changed

2 files changed

+26
-11
lines changed

example/lib/main.dart

+25-10
Original file line numberDiff line numberDiff 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+
2843
class 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
),

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Pre-lit Firebase Authentication. Drop in and add Firebase Auth in j
33
repository: https://github.com/funwithflutter/lit_firebase_auth
44
homepage: https://github.com/funwithflutter/lit_firebase_auth
55

6-
version: 0.0.3
6+
version: 0.0.4
77

88
environment:
99
sdk: ">=2.7.0 <3.0.0"

0 commit comments

Comments
 (0)