Flutter How to always hide keyboard when click on TextField but keep focus(Keep show cursor)
To hide keyboard and keep the cursor visible, set readOnly to true and showCursor to true. TextFormField( showCursor: true, readOnly: true), See flutter/issues/#16863