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