Link in about box
This commit is contained in:
parent
0a21d9c690
commit
2cd8533882
@ -381,9 +381,24 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
|
|||||||
),
|
),
|
||||||
Divider(),
|
Divider(),
|
||||||
new AboutListTile(
|
new AboutListTile(
|
||||||
|
aboutBoxChildren: <Widget>[
|
||||||
|
GestureDetector(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
HAUtils.launchURL("http://www.keyboardcrumbs.io/");
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
"www.keyboardcrumbs.io",
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.blue,
|
||||||
|
decoration: TextDecoration.underline
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
applicationName: appName,
|
applicationName: appName,
|
||||||
applicationVersion: appVersion,
|
applicationVersion: appVersion,
|
||||||
applicationLegalese: "Keyboard Crumbs | www.keyboardcrumbs.io",
|
applicationLegalese: "Keyboard Crumbs",
|
||||||
)
|
)
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user