actionButtonShape property
Shape of the action button.
Widget build(BuildContext context) {
return Scaffold(
body: SfAIAssistViewTheme(
data: SfAIAssistViewThemeData(
actionButtonShape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.0),
),
),
child: SfAIAssistView(),
),
);
}
Implementation
final ShapeBorder? actionButtonShape;