responsePrimaryHeaderTextStyle property
Text style for the primary header of response messages.
Widget build(BuildContext context) {
return Scaffold(
body: SfAIAssistViewTheme(
data: SfAIAssistViewThemeData(
responsePrimaryHeaderTextStyle: TextStyle(
fontSize: 12.0,
fontWeight: FontWeight.bold,
color: Colors.black,
),
),
child: SfAIAssistView(),
),
);
}
Implementation
final TextStyle? responsePrimaryHeaderTextStyle;