mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-27 17:29:50 +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.buildNumber;
|
||||
|
||||
if (JournalApp.isInDebugMode) {
|
||||
text += " (Debug)";
|
||||
}
|
||||
}
|
||||
|
||||
return ListTile(
|
||||
|
Reference in New Issue
Block a user