Flutter TextFieled , The hint and cursor is in the bottom of the text filed even with specifying that the verticalTextAlign as Center

Issue import ‘package:flutter/material.dart’; class TextFiledMessageSend extends StatelessWidget { const TextFiledMessageSend({super.key}); @override Widget build(BuildContext context) { return TextField( textAlignVertical: TextAlignVertical.center, decoration: InputDecoration( border: InputBorder.none, hintText: "Type your message ", // contentPadding: const EdgeInsets.symmetric(horizontal: 10), prefixIcon: IconButton( onPressed: () {}, icon: const

Continue reading