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