Addresses #77 (version string overflow)

This commit is contained in:
Imran Remtulla
2022-10-30 13:09:36 -04:00
parent 7cf7ffe0de
commit 4df0dd64ad

View File

@@ -212,8 +212,15 @@ class AppsPageState extends State<AppsPage> {
)),
],
)
: Text(sortedApps[index].app.installedVersion ??
'Not Installed')),
: SingleChildScrollView(
child: SizedBox(
width: 80,
child: Text(
sortedApps[index].app.installedVersion ??
'Not Installed',
overflow: TextOverflow.fade,
textAlign: TextAlign.end,
)))),
onTap: () {
if (selectedIds.isNotEmpty) {
toggleAppSelected(sortedApps[index].app.id);