outgoingSecondaryHeaderTextStyle property
Text style for the secondary header of outgoing messages.
Widget build(BuildContext context) {
return Scaffold(
body: SfChatTheme(
data: SfChatThemeData(
outgoingSecondaryHeaderTextStyle: TextStyle(
fontSize: 10.0,
color: Colors.white70,
),
),
child: SfChat(),
),
);
}
Implementation
final TextStyle? outgoingSecondaryHeaderTextStyle;