You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34,7 +42,12 @@ class _MyHomePageState extends State<MyHomePage> {
34
42
mainAxisAlignment:MainAxisAlignment.spaceEvenly,
35
43
crossAxisAlignment:CrossAxisAlignment.center,
36
44
children:<Widget>[
37
-
SvgPicture.asset('lib/assets/logo.svg'),
45
+
InkWell(
46
+
onTap: () {
47
+
_launchUrl(_githubLibraryRepoLink);
48
+
},
49
+
child:SvgPicture.asset('lib/assets/logo.svg'),
50
+
),
38
51
Column(
39
52
mainAxisAlignment:MainAxisAlignment.center,
40
53
crossAxisAlignment:CrossAxisAlignment.center,
@@ -43,7 +56,7 @@ class _MyHomePageState extends State<MyHomePage> {
43
56
padding:EdgeInsets.only(bottom:25),
44
57
child:Center(
45
58
child:Text(
46
-
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do ',
59
+
'To keep library size small and code clean we manage example on different repository. which includes clear usage of each and every component that we provide in getfltter library. Please have a look there.',
47
60
style:TextStyle(
48
61
fontSize:16,
49
62
color:GFColors.WHITE,
@@ -66,8 +79,7 @@ class _MyHomePageState extends State<MyHomePage> {
0 commit comments