I prevent copy paste in textformfield(Flutter web) using Ctrl+C and Ctrl+V by adding
enableInteractiveSelection: false,
toolbarOptions: ToolbarOptions(
copy: false,
cut: false,
paste: false,
selectAll: false,
),
But still, it is possible to copy-paste by the following method,
Is it possible to prevent ?