Update field_json_search.dart

This commit is contained in:
Ankit Mahato
2025-04-06 03:38:36 +05:30
parent fe6bdc9693
commit e7461e19ae

View File

@ -12,8 +12,13 @@ class JsonSearchField extends StatelessWidget {
return ADRawTextField( return ADRawTextField(
controller: controller, controller: controller,
onChanged: onChanged, onChanged: onChanged,
style: kCodeStyle, style: kCodeStyle.copyWith(
fontSize: Theme.of(context).textTheme.bodySmall?.fontSize,
),
hintText: 'Search..', hintText: 'Search..',
hintTextStyle: kCodeStyle.copyWith(
fontSize: Theme.of(context).textTheme.bodySmall?.fontSize,
),
); );
} }
} }