8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6305681 commit 20b08e5Copy full SHA for 20b08e5
fb-google-social-login.dart
@@ -1,6 +1,27 @@
1
2
3
4
+// A demo social login UI (have to include the svg files in the assets...)
5
+Row(
6
+ mainAxisAlignment: MainAxisAlignment.center,
7
+ children: <Widget>[
8
+ SocalIcon(
9
+ iconSrc: "assets/icons/facebook.svg",
10
+ press: () {},
11
+ ),
12
13
+ iconSrc: "assets/icons/twitter.svg",
14
15
16
17
+ iconSrc: "assets/icons/google-plus.svg",
18
19
20
+ ],
21
+ )
22
+
23
24
25
class SocalIcon extends StatelessWidget {
26
final String iconSrc;
27
final Function press;
0 commit comments