diff --git a/lib/pages/app.dart b/lib/pages/app.dart index 4a6a24c..94711ca 100644 --- a/lib/pages/app.dart +++ b/lib/pages/app.dart @@ -317,7 +317,7 @@ class _AppPageState extends State { tooltip: tr('more')), const SizedBox(width: 16.0), Expanded( - child: ElevatedButton( + child: TextButton( onPressed: (app?.app.installedVersion == null || app?.app.installedVersion != app?.app.latestVersion) && @@ -356,7 +356,8 @@ class _AppPageState extends State { ? tr('update') : tr('markUpdated')))), const SizedBox(width: 16.0), - ElevatedButton( + Expanded( + child: TextButton( onPressed: app?.downloadProgress != null ? null : () { @@ -401,7 +402,7 @@ class _AppPageState extends State { surfaceTintColor: Theme.of(context).colorScheme.error), child: Text(tr('remove')), - ), + )), ])), if (app?.downloadProgress != null) Padding(