padding property

  1. @override
EdgeInsetsGeometry padding
final

Customizes the padding around the text input field.

Defaults to EdgeInsets.only(top: 16.0).

Example:


@override
Widget build(BuildContext context) {
  return SfChat(
    composer: ChatComposer(
      padding: const EdgeInsets.only(top: 16.0),
    )
  );
}

Implementation

@override
final EdgeInsetsGeometry padding;