mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 18:03:14 +08:00
Settings: Highlight debug version
Since we no longer have the debug banner, it's nice to have a way to figure out what version we are running.
This commit is contained in:
@ -135,6 +135,10 @@ class VersionNumberTileState extends State<VersionNumberTile> {
|
|||||||
packageInfo.version +
|
packageInfo.version +
|
||||||
"+" +
|
"+" +
|
||||||
packageInfo.buildNumber;
|
packageInfo.buildNumber;
|
||||||
|
|
||||||
|
if (JournalApp.isInDebugMode) {
|
||||||
|
text += " (Debug)";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ListTile(
|
return ListTile(
|
||||||
|
Reference in New Issue
Block a user