buildInputFieldText method
List<AttributedText>
buildInputFieldText({
- required BuildContext context,
- TextStyle? style,
- required bool withComposing,
- required String text,
- List<
AttributedText> ? existingAttributes, - CometChatTheme? theme,
buildInputFieldText is a function which is used to style the text in the input field in the message composer
Implementation
List<AttributedText> buildInputFieldText(
{required BuildContext context,
TextStyle? style,
required bool withComposing,
required String text,
List<AttributedText>? existingAttributes,
CometChatTheme? theme}) {
return existingAttributes ?? [];
}