2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-13 10:45:29 +00:00
- Update release notes
- Update build number
This commit is contained in:
Oliver Walters
2021-02-25 19:58:07 +11:00
parent 90a74fec16
commit 613dd388b6
4 changed files with 17 additions and 22 deletions

View File

@ -114,26 +114,16 @@ class InvenTreeAboutWidget extends StatelessWidget {
)
);
// TODO: Do we really need build number?
/*
tiles.add(
ListTile(
title: Text(I18N.of(context).build),
subtitle: Text("${info.buildNumber}"),
return Scaffold(
appBar: AppBar(
title: Text(I18N.of(context).appAbout),
),
body: ListView(
children: ListTile.divideTiles(
context: context,
tiles: tiles,
).toList(),
)
);
*/
return Scaffold(
appBar: AppBar(
title: Text(I18N.of(context).appAbout),
),
body: ListView(
children: ListTile.divideTiles(
context: context,
tiles: tiles,
).toList(),
)
);
}
}