padding property
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
final EdgeInsetsGeometry padding;