From 3339ea1435f8b33cf1bc6430879b9abbf6c9d0e5 Mon Sep 17 00:00:00 2001 From: hoangdz1005 Date: Thu, 11 Sep 2025 08:55:48 +0700 Subject: [PATCH] fix: text and override method --- lib/src/chips_input.dart | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/src/chips_input.dart b/lib/src/chips_input.dart index 3c10a20d..412dff15 100644 --- a/lib/src/chips_input.dart +++ b/lib/src/chips_input.dart @@ -435,7 +435,7 @@ class ChipsInputState extends State> maxLines: 1, overflow: widget.textOverflow, style: widget.textStyle ?? - theme.textTheme.subtitle1!.copyWith(height: 1.5), + theme.textTheme.titleMedium!.copyWith(height: 1.5), ), ), Flexible( @@ -492,4 +492,19 @@ class ChipsInputState extends State> @override void removeTextPlaceholder() {} + + @override + void didChangeInputControl(TextInputControl? oldControl, TextInputControl? newControl) { + // TODO: implement didChangeInputControl + } + + @override + void insertContent(KeyboardInsertedContent content) { + // TODO: implement insertContent + } + + @override + void performSelector(String selectorName) { + // TODO: implement performSelector + } }