Update UI

This commit is contained in:
2024-10-29 11:37:25 +00:00
committed by GitHub
parent e2515520d6
commit 6421b43f82
4 changed files with 45 additions and 27 deletions

View File

@@ -258,12 +258,15 @@ class _TaskManagerPage extends State<TaskManagerPage>
}
Widget _buildIconList(BuildContext context) {
return Row(children: [
isDesktop || (kIsWeb && pointerIsMouse)
? _buildRefreshIcon(context)
: Container(),
_buildAddMenu(context),
]);
final cs = Theme.of(context).colorScheme;
return Container(
color: cs.surface,
child: Row(children: [
isDesktop || (kIsWeb && pointerIsMouse)
? _buildRefreshIcon(context)
: Container(),
_buildAddMenu(context),
]));
}
@override