2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 13:36:50 +00:00

Merge pull request #12 from SchrodingersGat/submit-issue

Add "submit a bug" tile
This commit is contained in:
Oliver 2020-04-05 12:27:05 +10:00 committed by GitHub
commit 317a6f737e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,18 +56,22 @@ class _InvenTreeSettingsState extends State<InvenTreeSettingsWidget> {
title: Text("App Name"), title: Text("App Name"),
subtitle: Text("${info.appName}"), subtitle: Text("${info.appName}"),
), ),
ListTile(
title: Text("App Version"),
subtitle: Text("${info.version}"),
),
ListTile( ListTile(
title: Text("Package Name"), title: Text("Package Name"),
subtitle: Text("${info.packageName}"), subtitle: Text("${info.packageName}"),
), ),
ListTile(
title: Text("App Version"),
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/"),
)
] ]
), ),
); );