requestSecondaryHeaderTextStyle property
Text style for the secondary header of request messages.
Widget build(BuildContext context) {
return Scaffold(
body: SfAIAssistViewTheme(
data: SfAIAssistViewThemeData(
requestSecondaryHeaderTextStyle: TextStyle(
fontSize: 10.0,
color: Colors.white70,
),
),
child: SfAIAssistView(),
),
);
}
Implementation
final TextStyle? requestSecondaryHeaderTextStyle;