TextEditingController postController = TextEditingController();
TextFormField(
controller: postController,
maxLines: null,
expands: true,
decoration: const InputDecoration(
hintText: 'Hey John, How was Your Day?',
hintStyle: TextStyle(color: Colors.grey),
border: InputBorder.none,
),
),
after using
postController.clear();