Update apidash_design_system UI as per the latest Material 3 colors

This commit is contained in:
Ashita Prasad
2025-03-01 19:45:57 +05:30
parent 32210e60cc
commit 0b5acbf599

View File

@ -71,19 +71,13 @@ class ADOutlinedTextField extends StatelessWidget {
hintStyle: hintTextStyle ??
kCodeStyle.copyWith(
fontSize: hintTextFontSize,
color: hintTextColor ??
clrScheme.outline.withOpacity(
kHintOpacity,
),
color: hintTextColor ?? clrScheme.outlineVariant,
),
hintText: hintText,
contentPadding: contentPadding ?? kP10,
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(
color: focussedBorderColor ??
clrScheme.primary.withOpacity(
kHintOpacity,
),
color: focussedBorderColor ?? clrScheme.outline,
),
),
enabledBorder: OutlineInputBorder(