editorTextStyle property
Text style for the message editor.
Widget build(BuildContext context) {
return Scaffold(
body: SfChatTheme(
data: SfChatThemeData(
editorTextStyle: TextStyle(
fontSize: 16.0,
color: Colors.black,
),
),
child: SfChat(),
),
);
}
Implementation
final TextStyle? editorTextStyle;