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

@@ -142,12 +142,15 @@ class _UsersPage extends State<UsersPage> with ThemeModeWidget, IsTopWidget2 {
}
Widget _buildIconList(BuildContext context) {
return Row(children: [
isDesktop || (kIsWeb && pointerIsMouse)
? _buildRefreshIcon(context)
: Container(),
_buildAddIcon(context),
]);
final cs = Theme.of(context).colorScheme;
return Container(
color: cs.surface,
child: Row(children: [
isDesktop || (kIsWeb && pointerIsMouse)
? _buildRefreshIcon(context)
: Container(),
_buildAddIcon(context),
]));
}
Widget _buildUserList(BuildContext context) {