How to Disable Text Box for Pasting content In Mendix Native App

0
Hello Team, In our native application. I need to restrict users not to paste text in the textbox. I have no idea,
asked
1 answers
1

you need to build a custom text input to prevent the copy and paste. for android an ios there are 2 different method.

 

for ios

<TextInput contextMenuHidden={true}

for Android

<View removeClippedSubviews={true}>

  <TextInput contextMenuHidden={true} />

</View>
answered