From e7461e19aefeedfe7b65cb4c93fdcd0a33e64e8b Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Sun, 6 Apr 2025 03:38:36 +0530 Subject: [PATCH] Update field_json_search.dart --- lib/widgets/field_json_search.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/widgets/field_json_search.dart b/lib/widgets/field_json_search.dart index 2dbcc8bb..62407da8 100644 --- a/lib/widgets/field_json_search.dart +++ b/lib/widgets/field_json_search.dart @@ -12,8 +12,13 @@ class JsonSearchField extends StatelessWidget { return ADRawTextField( controller: controller, onChanged: onChanged, - style: kCodeStyle, + style: kCodeStyle.copyWith( + fontSize: Theme.of(context).textTheme.bodySmall?.fontSize, + ), hintText: 'Search..', + hintTextStyle: kCodeStyle.copyWith( + fontSize: Theme.of(context).textTheme.bodySmall?.fontSize, + ), ); } }