ui fixes
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2025-09-05 08:32:31 -05:00
parent cd28953324
commit f16f6b808e
3 changed files with 533 additions and 6 deletions

View File

@@ -60,12 +60,7 @@ class _AuthScreenState extends State<AuthScreen> {
return;
}
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Invalid username or password'),
behavior: SnackBarBehavior.floating,
),
);
displayErrorMessage(context, 'Invalid username or password', clear: true);
}
return Scaffold(

View File

@@ -116,6 +116,7 @@ class AppDropdownFormField<T> extends StatelessWidget {
decoration: createCommonDecoration(
scheme,
labelText ?? "",
filled: true,
icon: prefixIcon,
),
dropdownColor: dropdownColor ?? effectiveFill,