footerPadding property

EdgeInsetsGeometry footerPadding
final

Customizes the padding around the footer section of the bubble (if applicable).

Defaults to EdgeInsetsDirectional.only(top: 4.0).

Example:


@override
Widget build(BuildContext context) {
  return SfChat(
    incomingBubbleSettings: ChatBubbleSettings(
      footerPadding: const EdgeInsetsDirectional.only(top: 4.0),
    ),
    outgoingBubbleSettings: ChatBubbleSettings(
      footerPadding: const EdgeInsetsDirectional.only(top: 4.0),
    ),
  );
}

Implementation

final EdgeInsetsGeometry footerPadding;