Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Switch off autocorrect on Xamarin forms 'Entry' component

Need to switch off auto correct and spell check on the Entry component in Xamarin Forms(UITextField equivalent of Cocoa)

Is there any property to do this?

like image 369
7vikram7 Avatar asked May 17 '17 07:05

7vikram7


Video Answer


1 Answers

Set IsTextPredictionEnabled property to False

<Entry Text="YOUR TEXT" IsTextPredictionEnabled="False"/>
like image 195
Giuseppe Laera Avatar answered Nov 30 '22 18:11

Giuseppe Laera