mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 13:36:50 +00:00
Add "submit a bug" tile
This commit is contained in:
parent
51ac5b0bfb
commit
e9f12c1e9f
@ -52,22 +52,26 @@ class _InvenTreeSettingsState extends State<InvenTreeSettingsWidget> {
|
|||||||
child: new SimpleDialog(
|
child: new SimpleDialog(
|
||||||
title: new Text("About InvenTree"),
|
title: new Text("About InvenTree"),
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("App Name"),
|
title: Text("App Name"),
|
||||||
subtitle: Text("${info.appName}"),
|
subtitle: Text("${info.appName}"),
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("App Version"),
|
title: Text("Package Name"),
|
||||||
subtitle: Text("${info.version}"),
|
subtitle: Text("${info.packageName}"),
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("Package Name"),
|
title: Text("App Version"),
|
||||||
subtitle: Text("${info.packageName}"),
|
subtitle: Text("${info.version}"),
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("Build Number"),
|
title: Text("Build Number"),
|
||||||
subtitle: Text("${info.buildNumber}")
|
subtitle: Text("${info.buildNumber}")
|
||||||
),
|
),
|
||||||
|
ListTile(
|
||||||
|
title: Text("Submit Bug Report"),
|
||||||
|
subtitle: Text("Submit a bug report or feature request at:\n https://github.com/inventree/inventree-app/issues/"),
|
||||||
|
)
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user