textStyle property

  1. @override
TextStyle? textStyle
final

The textStyle property defines the style of the composer input text.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    composer: AssistComposer(
      textStyle: TextStyle(
        fontSize: 16.0,
        color: Colors.black,
      ),
    )
  );
}

Implementation

@override
final TextStyle? textStyle;