Hi@akhtar,
You can use decoration inside your TextField. This has some parameters to control the TextField. In this field, you can add suffixIcon key to add the send button as shown below.
decoration: InputDecoration(
suffixIcon: IconButton(
icon: Icon(Icons.send),
onPressed: (),
),
)