outgoingBubbleContentShape property

ShapeBorder? outgoingBubbleContentShape
final

Shape of the outgoing message bubble.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfChatTheme(
      data: SfChatThemeData(
        outgoingBubbleContentShape: RoundedRectangleBorder(
          borderRadius: BorderRadius.circular(12.0),
        ),
      ),
      child: SfChat(),
    ),
  );
}

Implementation

final ShapeBorder? outgoingBubbleContentShape;