fix: textstyle height, keyId

This commit is contained in:
DenserMeerkat
2024-03-16 15:52:29 +05:30
parent 6eddcd2622
commit 5beb51d2f4
7 changed files with 58 additions and 42 deletions

View File

@ -76,9 +76,13 @@ class _HeaderFieldState extends State<HeaderField> {
onChanged: widget.onChanged,
controller: controller,
focusNode: focusNode,
style: kCodeStyle.copyWith(color: colorScheme.onSurface),
style: kCodeStyle.copyWith(
height: 1.6,
color: colorScheme.onSurface,
),
decoration: InputDecoration(
hintStyle: kCodeStyle.copyWith(
height: 1.6,
color: colorScheme.outline.withOpacity(kHintOpacity)),
hintText: widget.hintText,
contentPadding: const EdgeInsets.only(bottom: 12),